From 407c98753879bf74ede4dabb5f165a9bf6fbbc40 Mon Sep 17 00:00:00 2001 From: Arthur O'Dwyer Date: Wed, 18 Oct 2023 13:49:36 -0400 Subject: [PATCH] test --- .github/workflows/ci-tests.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 4503c98..acfe89b 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -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++ @@ -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/build cd ${{ github.workspace }}/build make ./bin/utest