fix ci builds by pinning msvc to windows-2022 and configuring waf on linux (#103)
parent
75a3dd59ee
commit
1686404314
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
#!/bin/bash
|
||||
currenPath="$PWD"
|
||||
cd ../../
|
||||
./waf configure
|
||||
./waf
|
||||
cd "$currenPath"
|
||||
libPath="$currenPath/lib"
|
||||
|
|
|
|||
Loading…
Reference in New Issue