Fix -Woverloaded-virtual warning #62
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: spoa CI | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
test: | |
strategy: | |
matrix: | |
compiler: | |
- g++-7 | |
- g++ | |
- clang++-6.0 | |
- clang++ | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- if: ${{ contains(matrix.compiler, '-') }} | |
name: Get compiler version | |
id: get-compiler-version | |
run: | | |
version=$(echo ${{ matrix.compiler }} | cut -d- -f2) | |
echo "version=$version" >> $GITHUB_OUTPUT | |
- if: ${{ startsWith(matrix.compiler, 'g++-') }} | |
name: Setup GCC | |
uses: egor-tensin/setup-gcc@v1 | |
with: | |
version: "${{ steps.get-compiler-version.outputs.version }}" | |
platform: x64 | |
- if: ${{ startsWith(matrix.compiler, 'clang++-') }} | |
name: Setup Clang | |
uses: egor-tensin/setup-clang@v1 | |
with: | |
version: "${{ steps.get-compiler-version.outputs.version }}" | |
platform: x64 | |
- name: Configure CMake | |
run: | | |
cmake -B ${{ github.workspace }}/build_cmake -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} | |
cmake --build ${{ github.workspace }}/build_cmake | |
env: | |
CXX: ${{ matrix.compiler }} | |
- name: Configure Meson | |
uses: BSFishy/[email protected] | |
with: | |
action: build | |
directory: build_meson | |
meson-version: 0.60.0 | |
- name: Test | |
working-directory: ${{ github.workspace }} | |
run: | | |
build_cmake/bin/spoa --version | |
build_cmake/bin/spoa_test | |
build_meson/src/spoa --version | |
build_meson/test/spoa_test |