Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable S3 VFD Test for Windows CI #5247

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/main-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
parallel: OFF
mirror_vfd: OFF
direct_vfd: OFF
ros3_vfd: OFF
ros3_vfd: ON
generator: "-G \"Visual Studio 17 2022\" -A x64"
run_tests: true

Expand Down Expand Up @@ -153,6 +153,7 @@ jobs:
# Set these environment variables so CMake picks the correct compiler
echo "CXX=cl.exe" >> $GITHUB_ENV
echo "CC=cl.exe" >> $GITHUB_ENV
vcpkg install curl[openssl]
if: matrix.os == 'windows-latest'

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand All @@ -162,6 +163,9 @@ jobs:
# CMAKE CONFIGURE
- name: CMake Configure
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 @@ -192,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 @@ -223,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
Loading