fix ci builds by pinning msvc to windows-2022 and configuring waf on linux

pull/103/head
joseph calderon 2026-07-07 16:20:01 -07:00
parent 75a3dd59ee
commit ccf701b34f
2 changed files with 5 additions and 4 deletions

View File

@ -17,15 +17,15 @@ jobs:
matrix:
config:
- {
name: "Windows Latest MSVC Shared", artifact: "Windows-MSVC-shared.tar.xz",
os: windows-latest,
name: "Windows 2022 MSVC Shared", artifact: "Windows-MSVC-shared.tar.xz",
os: windows-2022,
cc: "cl", cxx: "cl",
shared: "ON",
environment_script: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat"
}
- {
name: "Windows Latest MSVC", artifact: "Windows-MSVC.tar.xz",
os: windows-latest,
name: "Windows 2022 MSVC", artifact: "Windows-MSVC.tar.xz",
os: windows-2022,
cc: "cl", cxx: "cl",
shared: "OFF",
environment_script: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat"

View File

@ -1,6 +1,7 @@
#!/bin/bash
currenPath="$PWD"
cd ../../
./waf configure
./waf
cd "$currenPath"
libPath="$currenPath/lib"