Skip to content

Commit

Permalink
fix: another approach and try ` instead..
Browse files Browse the repository at this point in the history
  • Loading branch information
DNKpp committed Oct 8, 2023
1 parent e32046c commit 1479671
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/run_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,12 @@ jobs:
- uses: actions/checkout@v3
- name: Compile
run: |
cmake -G"Visual Studio 17 2022" ^
-T${{matrix.toolset}} ^
-DCMAKE_BUILD_TYPE=${{matrix.build_mode}} ^
-DSIMPLE_UTILITY_BUILD_BENCHMARKS=Yes ^
-B${{env.BUILD_DIR}} ^
-Ax64 ^
cmake -G"Visual Studio 17 2022" `
-T${{matrix.toolset}} `
-DCMAKE_BUILD_TYPE=${{matrix.build_mode}} `
-DSIMPLE_UTILITY_BUILD_BENCHMARKS=Yes `
-B${{env.BUILD_DIR}} `
-Ax64 `
-S .
cmake --build ${{ env.BUILD_DIR }} --config ${{ matrix.build_mode }} -j4
- name: Run benchmarks
Expand All @@ -145,12 +145,12 @@ jobs:
- uses: actions/checkout@v3
- name: Compile
run: |
cmake -G"Visual Studio 16 2019" ^
-T${{matrix.toolset}} ^
-DCMAKE_BUILD_TYPE=${{matrix.build_mode}} ^
-DSIMPLE_UTILITY_BUILD_BENCHMARKS=Yes ^
-B${{env.BUILD_DIR}} ^
-Ax64 ^
cmake -G"Visual Studio 17 2022" `
-T${{matrix.toolset}} `
-DCMAKE_BUILD_TYPE=${{matrix.build_mode}} `
-DSIMPLE_UTILITY_BUILD_BENCHMARKS=Yes `
-B${{env.BUILD_DIR}} `
-Ax64 `
-S .
cmake --build ${{env.BUILD_DIR}} --config ${{matrix.build_mode}} -j4
- name: Run benchmarks
Expand Down

0 comments on commit 1479671

Please sign in to comment.