Skip to content

Commit

Permalink
remove reference to matrix bindings to see if it works
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Dec 19, 2023
1 parent 1b75504 commit 2602fc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
arch : [x86,x64,amd64_arm64]
include:
- arch : x86
bindings : -DZ3_BUILD_PYTHON_BINDINGS=True
bindings : '-DZ3_BUILD_PYTHON_BINDINGS=True'
- arch : x64
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'
cmd3 : 'set /P JlCxxDir=<tmp.env'
bindings: '-DJlCxx_DIR=%JlCxxDir%\..\lib\cmake\JlCxx $(cmakeJava) $(cmakeNet) $(cmakePy) -DCMAKE_BUILD_TYPE=RelWithDebInfo'
- arch : amd64_arm64
bindings: -DZ3_BUILD_PYTHON_BINDINGS=True
bindings: '-DZ3_BUILD_PYTHON_BINDINGS=True'

runs-on: windows-latest
steps:
Expand All @@ -39,6 +39,6 @@ jobs:
run: |
cmd /c "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" ${{ matrix.arch }}
- name: configure
run: cmake .. ${{ matrix.bindings }} -G "NMake Makefiles"
run: cmake -G "NMake Makefiles" ../
- name: make
run: nmake

0 comments on commit 2602fc2

Please sign in to comment.