Skip to content

Commit

Permalink
Fix TS & CC cases
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee committed Jan 17, 2025
1 parent 4159dd3 commit d18d5f2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
run: |
if [[ "$OS" == "Windows_NT" ]]; then
export CMAKE_TOOLCHAIN_FILE="C:/vcpkg/scripts/buildsystems/vcpkg.cmake"
fi
fi
mkdir "${{ runner.workspace }}/build"
cd "${{ runner.workspace }}/build"
cmake -C $GITHUB_WORKSPACE/config/cmake/cacheinit.cmake \
Expand Down Expand Up @@ -196,6 +196,9 @@ jobs:

- name: CMake Configure (Thread-Safe)
run: |
if [[ "$OS" == "Windows_NT" ]]; then
export CMAKE_TOOLCHAIN_FILE="C:/vcpkg/scripts/buildsystems/vcpkg.cmake"
fi
mkdir "${{ runner.workspace }}/build"
cd "${{ runner.workspace }}/build"
cmake -C $GITHUB_WORKSPACE/config/cmake/cacheinit.cmake \
Expand Down Expand Up @@ -227,6 +230,9 @@ jobs:

- name: CMake Configure (Concurrency)
run: |
if [[ "$OS" == "Windows_NT" ]]; then
export CMAKE_TOOLCHAIN_FILE="C:/vcpkg/scripts/buildsystems/vcpkg.cmake"
fi
mkdir "${{ runner.workspace }}/build"
cd "${{ runner.workspace }}/build"
cmake -C $GITHUB_WORKSPACE/config/cmake/cacheinit.cmake \
Expand Down

0 comments on commit d18d5f2

Please sign in to comment.