Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Quuxplusone committed Oct 18, 2023
1 parent 1daf73c commit 45e037b
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@ jobs:
# Consider changing this to true when your workflow is stable.
fail-fast: true

# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
# [Debug, Release, RelWithDebInfo]
# [g++, clang++, cl]
# [14, 17, 20, 23]
#
matrix:
os: [ubuntu-latest, windows-latest]
build_type: [Debug, Release]
cpp_compiler: [g++, clang++, cl]
cpp_standard: [14, 17, 20, 23]
build_type: [Debug]
cpp_compiler: [clang++, cl]
cpp_standard: [14]
exclude:
- os: windows-latest
cpp_compiler: g++
Expand Down Expand Up @@ -77,8 +79,8 @@ jobs:
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} \
-DCMAKE_CXX_STANDARD=${{ matrix.cpp_standard }} \
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
-DGTEST_ROOT=${{ github.workspace }}/googletest/build \
-Dbenchmark_DIR=${{ github.workspace }}/benchmark/build
-DCMAKE_PREFIX_PATH="${{ github.workspace }}/benchmark/build;${{ github.workspace }}/googletest/build" \
-DGTEST_ROOT=${{ github.workspace }}/googletest
cd ${{ github.workspace }}/build
make
./bin/utest

0 comments on commit 45e037b

Please sign in to comment.