Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Tessil committed Dec 7, 2023
1 parent d0dae4c commit 3a2e85e
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,42 +9,42 @@ jobs:
matrix:
config:
- {
name: linux-x64-gcc-7,
os: ubuntu-18.04,
cxx: g++-7,
name: linux-x64-gcc,
os: ubuntu-latest,
cxx: g++,
cmake-build-type: Release
}
- {
name: linux-x64-clang-9,
os: ubuntu-18.04,
cxx: clang++-9,
name: linux-x64-clang,
os: ubuntu-latest,
cxx: clang++,
cmake-build-type: Release
}
- {
name: macos-x64-gcc,
os: macos-10.15,
os: macos-latest,
cxx: g++,
cmake-build-type: Release
}
- {
name: macos-x64-clang,
os: macos-10.15,
os: macos-latest,
cxx: clang++,
cmake-build-type: Release
}
- {
name: linux-x64-clang-12-sanitize,
os: ubuntu-20.04,
cxx: clang++-12,
name: linux-x64-clang-sanitize,
os: ubuntu-latest,
cxx: clang++,
cxx-flags: "-fsanitize=address,undefined",
cmake-build-type: Release
}
- {
name: linux-x64-gcc-10-coverage,
os: ubuntu-20.04,
cxx: g++-10,
name: linux-x64-gcc-coverage,
os: ubuntu-latest,
cxx: g++,
cxx-flags: --coverage,
gcov-tool: gcov-10,
gcov-tool: gcov,
cmake-build-type: Debug
}
- {
Expand Down Expand Up @@ -126,4 +126,4 @@ jobs:
sudo apt-get install -y lcov
lcov -c -b ${{github.workspace}}/include -d ${{github.workspace}}/build -o ${{github.workspace}}/coverage.info --no-external --gcov-tool ${{matrix.config.gcov-tool}}
bash <(curl -s https://codecov.io/bash) -f ${{github.workspace}}/coverage.info
if: ${{matrix.config.name == 'linux-x64-gcc-10-coverage'}}
if: ${{matrix.config.name == 'linux-x64-gcc-coverage'}}

0 comments on commit 3a2e85e

Please sign in to comment.