2828 with :
2929 version : ${{ env.ZIG_VERSION }}
3030
31- - name : Setup vcpkg (Windows)
32- if : runner.os == 'Windows'
33- uses : lukka/run-vcpkg@v11
34- with :
35- vcpkgGitCommitId : ' a42af01b72c28a8e1d7b48107b33e4f286a55ef6' # Latest stable
36-
3731 - name : Install system dependencies
3832 shell : bash
3933 run : |
@@ -58,13 +52,13 @@ jobs:
5852 brew install boost openssl cmake
5953 echo "✅ macOS dependencies installed"
6054 ;;
61- Windows)
62- # Install basic dependencies
63- choco install cmake openssl
64- # Install Boost via vcpkg for better CMake integration
65- vcpkg install boost-system boost-filesystem boost-program-options --triplet x64-windows
66- echo "✅ Windows dependencies installed"
67- ;;
55+ # Windows)
56+ # # Install basic dependencies
57+ # choco install cmake openssl
58+ # # Install Boost via vcpkg for better CMake integration
59+ # vcpkg install boost-system boost-filesystem boost-program-options --triplet x64-windows
60+ # echo "✅ Windows dependencies installed"
61+ # ;;
6862 esac
6963
7064 - name : Cache Zig artifacts
10195 strategy :
10296 fail-fast : false
10397 matrix :
104- os : [ubuntu-latest, macos-latest, windows-latest]
98+ os : [ubuntu-latest, macos-latest] # windows-latest commented out until Boost issues resolved
10599 zig-version : [0.14.1]
106100
107101 steps :
@@ -115,12 +109,7 @@ jobs:
115109 with :
116110 version : ${{ matrix.zig-version }}
117111
118- - name : Setup vcpkg (Windows)
119- if : runner.os == 'Windows'
120- uses : lukka/run-vcpkg@v11
121- with :
122- vcpkgGitCommitId : ' a42af01b72c28a8e1d7b48107b33e4f286a55ef6' # Latest stable
123-
112+
124113 - name : Install system dependencies
125114 shell : bash
126115 run : |
@@ -145,13 +134,13 @@ jobs:
145134 brew install boost openssl cmake
146135 echo "✅ macOS dependencies installed"
147136 ;;
148- Windows)
149- # Install basic dependencies
150- choco install cmake openssl
151- # Install Boost via vcpkg for better CMake integration
152- vcpkg install boost-system boost-filesystem boost-program-options --triplet x64-windows
153- echo "✅ Windows dependencies installed"
154- ;;
137+ # Windows)
138+ # # Install basic dependencies
139+ # choco install cmake openssl
140+ # # Install Boost via vcpkg for better CMake integration
141+ # vcpkg install boost-system boost-filesystem boost-program-options --triplet x64-windows
142+ # echo "✅ Windows dependencies installed"
143+ # ;;
155144 esac
156145
157146 - name : Cache Zig artifacts
@@ -298,7 +287,7 @@ jobs:
298287
299288 strategy :
300289 matrix :
301- os : [ubuntu-latest, macos-latest, windows-latest]
290+ os : [ubuntu-latest, macos-latest] # windows-latest commented out until Boost issues resolved
302291
303292 steps :
304293 - name : Checkout code
@@ -311,12 +300,6 @@ jobs:
311300 with :
312301 version : ${{ env.ZIG_VERSION }}
313302
314- - name : Setup vcpkg (Windows)
315- if : runner.os == 'Windows'
316- uses : lukka/run-vcpkg@v11
317- with :
318- vcpkgGitCommitId : ' a42af01b72c28a8e1d7b48107b33e4f286a55ef6' # Latest stable
319-
320303 - name : Install system dependencies
321304 shell : bash
322305 run : |
@@ -341,13 +324,13 @@ jobs:
341324 brew install boost openssl cmake
342325 echo "✅ macOS dependencies installed"
343326 ;;
344- Windows)
345- # Install basic dependencies
346- choco install cmake openssl
347- # Install Boost via vcpkg for better CMake integration
348- vcpkg install boost-system boost-filesystem boost-program-options --triplet x64-windows
349- echo "✅ Windows dependencies installed"
350- ;;
327+ # Windows)
328+ # # Install basic dependencies
329+ # choco install cmake openssl
330+ # # Install Boost via vcpkg for better CMake integration
331+ # vcpkg install boost-system boost-filesystem boost-program-options --triplet x64-windows
332+ # echo "✅ Windows dependencies installed"
333+ # ;;
351334 esac
352335
353336 - name : Cache Zig artifacts
0 commit comments