Skip to content

Commit

Permalink
Fixed typo in CMake cache creation
Browse files Browse the repository at this point in the history
  • Loading branch information
bialger committed Jan 18, 2024
1 parent ff6d3ed commit 3e2da78
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Create CMake cache
shell: bash
env:
CC: ${{ matrix.config.cc }}
CXX: ${{ matrix.config.cxx }}
run: |
cmake -S . -B cmake-build -DCMAKE_CXX_COMPILER={CXX} -DCMAKE_C_COMPILER={CC}
cmake -S . -B cmake-build -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC
- name: Build main target
run: |
Expand Down

0 comments on commit 3e2da78

Please sign in to comment.