Skip to content

Commit

Permalink
Test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Tessil committed Oct 9, 2023
1 parent 7ab2fa0 commit 60d7013
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,50 +9,50 @@ 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-gcc-7-no-exceptions,
os: ubuntu-18.04,
cxx: g++-7,
cxx-flags: -fno-exceptions,
name: linux-x64-clang,
os: ubuntu-latest,
cxx: clang++,
cmake-build-type: Release
}
- {
name: linux-x64-clang-9,
os: ubuntu-18.04,
cxx: clang++-9,
name: linux-x64-gcc-no-exceptions,
os: ubuntu-latest,
cxx: g++,
cxx-flags: -fno-exceptions,
cmake-build-type: Release
}
- {
name: macos-x64-gcc,
os: macos-10.15,
name: linux-x64-gcc-coverage,
os: ubuntu-latest,
cxx: g++,
cmake-build-type: Release
cxx-flags: --coverage,
gcov-tool: gcov,
cmake-build-type: Debug
}
- {
name: macos-x64-clang,
os: macos-10.15,
name: linux-x64-clang-sanitize,
os: ubuntu-latest,
cxx: clang++,
cxx-flags: "-fsanitize=address,undefined",
cmake-build-type: Release
}
- {
name: linux-x64-clang-12-sanitize,
os: ubuntu-20.04,
cxx: clang++-12,
cxx-flags: "-fsanitize=address,undefined",
name: macos-x64-gcc,
os: macos-latest,
cxx: g++,
cmake-build-type: Release
}
- {
name: linux-x64-gcc-10-coverage,
os: ubuntu-20.04,
cxx: g++-10,
cxx-flags: --coverage,
gcov-tool: gcov-10,
cmake-build-type: Debug
name: macos-x64-clang,
os: macos-latest,
cxx: clang++,
cmake-build-type: Release
}
- {
name: windows-x64-vs-2019,
Expand Down

0 comments on commit 60d7013

Please sign in to comment.