Skip to content

Commit

Permalink
Fix missing escaped line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
chillenzer committed Jul 12, 2024
1 parent 404f765 commit 125b5f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
- run: mkdir build_dir
- working-directory: build_dir
run: |
cmake ..
-DCMAKE_CXX_FLAGS="-std=c++20 -g"
-Dalpaka_CXX_STANDARD=20
-DmallocMC_CATCH2_PROVIDER=extern
-Dalpaka_ACC_CPU_B_SEQ_T_SEQ=ON
cmake .. \
-DCMAKE_CXX_FLAGS="-std=c++20 -g" \
-Dalpaka_CXX_STANDARD=20 \
-DmallocMC_CATCH2_PROVIDER=extern \
-Dalpaka_ACC_CPU_B_SEQ_T_SEQ=ON \
-Dalpaka_ACC_CPU_B_SEQ_T_THREADS=ON
- working-directory: build_dir
run: make -j tests examples
Expand Down

0 comments on commit 125b5f4

Please sign in to comment.