mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 09:55:19 +00:00
remove reference to matrix bindings to see if it works
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1b7550483e
commit
2602fc2eb5
6
.github/workflows/Windows.yml
vendored
6
.github/workflows/Windows.yml
vendored
|
@ -9,14 +9,14 @@ jobs:
|
||||||
arch : [x86,x64,amd64_arm64]
|
arch : [x86,x64,amd64_arm64]
|
||||||
include:
|
include:
|
||||||
- arch : x86
|
- arch : x86
|
||||||
bindings : -DZ3_BUILD_PYTHON_BINDINGS=True
|
bindings : '-DZ3_BUILD_PYTHON_BINDINGS=True'
|
||||||
- arch : x64
|
- arch : x64
|
||||||
cmd1 : 'julia -e "using Pkg; Pkg.add(PackageSpec(name=\"libcxxwrap_julia_jll\", version=\"0.7.0\"))"'
|
cmd1 : 'julia -e "using Pkg; Pkg.add(PackageSpec(name=\"libcxxwrap_julia_jll\", version=\"0.7.0\"))"'
|
||||||
cmd2 : 'julia -e "using libcxxwrap_julia_jll; print(dirname(libcxxwrap_julia_jll.libcxxwrap_julia_path))" > tmp.env'
|
cmd2 : 'julia -e "using libcxxwrap_julia_jll; print(dirname(libcxxwrap_julia_jll.libcxxwrap_julia_path))" > tmp.env'
|
||||||
cmd3 : 'set /P JlCxxDir=<tmp.env'
|
cmd3 : 'set /P JlCxxDir=<tmp.env'
|
||||||
bindings: '-DJlCxx_DIR=%JlCxxDir%\..\lib\cmake\JlCxx $(cmakeJava) $(cmakeNet) $(cmakePy) -DCMAKE_BUILD_TYPE=RelWithDebInfo'
|
bindings: '-DJlCxx_DIR=%JlCxxDir%\..\lib\cmake\JlCxx $(cmakeJava) $(cmakeNet) $(cmakePy) -DCMAKE_BUILD_TYPE=RelWithDebInfo'
|
||||||
- arch : amd64_arm64
|
- arch : amd64_arm64
|
||||||
bindings: -DZ3_BUILD_PYTHON_BINDINGS=True
|
bindings: '-DZ3_BUILD_PYTHON_BINDINGS=True'
|
||||||
|
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -39,6 +39,6 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cmd /c "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" ${{ matrix.arch }}
|
cmd /c "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" ${{ matrix.arch }}
|
||||||
- name: configure
|
- name: configure
|
||||||
run: cmake .. ${{ matrix.bindings }} -G "NMake Makefiles"
|
run: cmake -G "NMake Makefiles" ../
|
||||||
- name: make
|
- name: make
|
||||||
run: nmake
|
run: nmake
|
||||||
|
|
Loading…
Reference in a new issue