Skip to content
Closed
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
13 changes: 5 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,12 @@ jobs:
elif [[ "$RUNNER_OS" == "Windows" ]]; then
# Install LLVM/Clang for Windows
choco install llvm -y
# Install vcpkg for Cap'n Proto on Windows
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.bat
./vcpkg install capnproto:x64-windows
echo "VCPKG_ROOT=$(pwd)" >> $GITHUB_ENV
echo "CMAKE_TOOLCHAIN_FILE=$(pwd)/scripts/buildsystems/vcpkg.cmake" >> $GITHUB_ENV
cd ..
# Install Cap'n Proto (for Windows)
curl -LO https://capnproto.org/capnproto-c++-win32-$CAPNP_VERSION.zip && \
unzip -j capnproto-c++-win32-$CAPNP_VERSION.zip capnproto-tools-win32-$CAPNP_VERSION/capnp.exe -d /usr/bin

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a /usr/bin folder on Windows?

fi
env:
CAPNP_VERSION: 1.2.0
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
Loading