From 799df22bd5000995caba2e86f0d9d0583f04872b Mon Sep 17 00:00:00 2001 From: Jeongseok Lee Date: Wed, 13 Mar 2024 14:40:01 -0700 Subject: [PATCH] [ci][win] Use ` instead of ^ as continuation char --- .github/workflows/ci_windows.yml | 36 ++++++++++++++++---------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci_windows.yml b/.github/workflows/ci_windows.yml index 6186a580c8e5e..a8c3d088576ae 100644 --- a/.github/workflows/ci_windows.yml +++ b/.github/workflows/ci_windows.yml @@ -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: