Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
gogo2464 committed Sep 14, 2024
1 parent 4e9d205 commit 6bba83e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/Publish-Python3-Bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:

- name: Install dependencies
run: |
dir C:\hostedtoolcache\windows\Python\3.12.6
choco install nuget.commandline --yes
nuget install Bison -Version 3.7.4 -OutputDirectory C:\Tools\bison
nuget install PCRE2 -Version 10.39 -OutputDirectory C:\Tools\pcre2
Expand Down Expand Up @@ -60,12 +62,12 @@ jobs:
cd ..
- name: Build
run: |
make all PYENV=C:\hostedtoolcache\windows\Python\3.12.1\x64
make all PYENV=C:\hostedtoolcache\windows\Python\3.12.6\x64
- name: Run Binding Tests
run: |
make all PYENV=C:\hostedtoolcache\windows\Python\3.12.1\x64
python -c "from pwnlib.tubes.process import Process; p = Process('C:\hostedtoolcache\windows\Python\3.12.1\x64\python.exe'); p.recv(123)"
make all PYENV=C:\hostedtoolcache\windows\Python\3.12.6\x64
python -c "from pwnlib.tubes.process import Process; p = Process('C:\hostedtoolcache\windows\Python\3.12.6\x64\python.exe'); p.recv(123)"
- name: Clean
run: make clean

Expand Down

0 comments on commit 6bba83e

Please sign in to comment.