Skip to content
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .agents/tasks/2025/06/29-2122-check-windows-ci
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Navigate to GitHub CI runs and examine Windows failures, guess issue and propose fix
1 change: 1 addition & 0 deletions .agents/tasks/2025/06/29-2253-fix-windows-capnp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix Windows CI path for capnp
1 change: 1 addition & 0 deletions .agents/tasks/2025/06/29-2319-ci-failure-analysis
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Navigate to the GitHub CI runs and examine the Windows failures, try to guess the problem and propose a fix
1 change: 1 addition & 0 deletions .agents/tasks/2025/06/29-2336-windows-ci-rb-sys
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Investigate missing strings.h error in Windows CI and propose fix
1 change: 1 addition & 0 deletions .agents/tasks/2025/06/30-0638-windows-ridk-fix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The Windows CI failed now because it didn't have ridk installed
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,34 @@ jobs:
elif [[ "$RUNNER_OS" == "Windows" ]]; then
# Install LLVM/Clang for Windows
choco install llvm -y
echo "LIBCLANG_PATH=C:\\Program Files\\LLVM\\bin" >> $GITHUB_ENV
echo "CLANG_PATH=C:\\Program Files\\LLVM\\bin\\clang.exe" >> $GITHUB_ENV
# Add MSYS2 include directories for bindgen
echo "BINDGEN_EXTRA_CLANG_ARGS_x86_64-pc-windows-gnu=-IC:/msys64/ucrt64/include -IC:/msys64/usr/include" >> $GITHUB_ENV
# 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
echo "$(pwd -W)/installed/x64-windows/tools/capnproto" >> $GITHUB_PATH
cd ..
fi
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
- name: Install MSYS2 toolchain
if: runner.os == 'Windows'
shell: bash
run: |
ruby -S ridk install 3
ruby -S ridk exec pacman -S --noconfirm base-devel mingw-w64-ucrt-x86_64-toolchain
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.os == 'windows-latest' && 'stable-x86_64-pc-windows-gnu' || 'stable' }}
- name: Install Ruby dependencies
run: bundle install
- name: Setup just
Expand Down
Loading