Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci][win] Use ` instead of ^ as continuation char
Browse files Browse the repository at this point in the history
jslee02 committed Mar 13, 2024
1 parent 086d151 commit 799df22
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
@@ -49,26 +49,26 @@ jobs:
- name: Build
run: |
cmake ^
-S . ^
-B build ^
-G "Visual Studio 17 2022" ^
-A x64 ^
-Wno-dev ${{ matrix.toolset }} ^
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ^
-DCMAKE_TOOLCHAIN_FILE="${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake" ^
-DDART_MSVC_DEFAULT_OPTIONS=ON ^
-DDART_VERBOSE=ON ^
cmake `
-S . `
-B build `
-G "Visual Studio 17 2022" `
-A x64 `
-Wno-dev ${{ matrix.toolset }} `
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} `
-DCMAKE_TOOLCHAIN_FILE="${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake" `
-DDART_MSVC_DEFAULT_OPTIONS=ON `
-DDART_VERBOSE=ON `
-DBUILD_SHARED_LIBS=${{ matrix.build_shared_libs }}
cmake ^
--build build ^
--config %BUILD_TYPE% ^
--target ALL_BUILD ^
cmake `
--build build `
--config %BUILD_TYPE% `
--target ALL_BUILD `
--parallel
ctest ^
--test-dir build ^
--rerun-failed ^
--output-on-failure ^
ctest `
--test-dir build `
--rerun-failed `
--output-on-failure `
--config %BUILD_TYPE%
# build_on_pixi:

0 comments on commit 799df22

Please sign in to comment.