1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-11-18 05:28:09 +00:00

Install setuptools before building pydis

This commit is contained in:
Anichitei Ionel-Cristinel 2020-07-31 17:29:10 +03:00 committed by GitHub
parent 374dd532e6
commit 1184a314a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,9 +39,12 @@ jobs:
make -j$(nproc)
cd ..
cd ..
- name: Install setuptools
run: |
python3 -m pip install --upgrade pip
python3 -m pip install setuptools
- name: Build pydis
run: |
cd pydis
python3 setup.py build
cd ..