Skip to content

Commit

Permalink
Call vcvars64 on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed May 16, 2024
1 parent eb3726a commit d873e56
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/angr-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,14 @@ jobs:
name: sdist
path: sdist
- name: Build wheels
if: ! startsWith(matrix.os, 'windows')
run: release-scripts/build_wheels.sh sdist
- name: Build wheels
if: startsWith(matrix.os, 'windows')
run: |
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat
bash release-scripts/build_wheels.sh sdist
shell: cmd
- name: Upload wheel artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit d873e56

Please sign in to comment.