mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
Use actions/setup-python
for MacOS
This commit is contained in:
parent
2bc7c50302
commit
3d824425d2
1 changed files with 15 additions and 12 deletions
27
.github/workflows/macos.yml
vendored
27
.github/workflows/macos.yml
vendored
|
@ -21,6 +21,10 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.12'
|
||||||
|
|
||||||
- name: Set Git http.postBuffer to something high
|
- name: Set Git http.postBuffer to something high
|
||||||
run: git config --global http.postBuffer 524288000
|
run: git config --global http.postBuffer 524288000
|
||||||
|
|
||||||
|
@ -39,10 +43,7 @@ jobs:
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
- name: Install Python dependencies
|
- name: Install Python dependencies
|
||||||
run: |
|
run: pip install -r tools/requirements.txt
|
||||||
python3 -m pip install --upgrade pip
|
|
||||||
python3 -m pip install setuptools ansicolors sslcrypto
|
|
||||||
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
|
||||||
|
|
||||||
- name: make clean
|
- name: make clean
|
||||||
run: make clean
|
run: make clean
|
||||||
|
@ -61,6 +62,10 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.12'
|
||||||
|
|
||||||
- name: Set Git http.postBuffer to something high
|
- name: Set Git http.postBuffer to something high
|
||||||
run: git config --global http.postBuffer 524288000
|
run: git config --global http.postBuffer 524288000
|
||||||
|
|
||||||
|
@ -79,10 +84,7 @@ jobs:
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
- name: Install Python dependencies
|
- name: Install Python dependencies
|
||||||
run: |
|
run: pip install -r tools/requirements.txt
|
||||||
python3 -m pip install --upgrade pip
|
|
||||||
python3 -m pip install setuptools ansicolors sslcrypto
|
|
||||||
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
|
||||||
|
|
||||||
- name: make clean
|
- name: make clean
|
||||||
run: make clean
|
run: make clean
|
||||||
|
@ -102,6 +104,10 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.12'
|
||||||
|
|
||||||
- name: Set Git http.postBuffer to something high
|
- name: Set Git http.postBuffer to something high
|
||||||
run: git config --global http.postBuffer 524288000
|
run: git config --global http.postBuffer 524288000
|
||||||
|
|
||||||
|
@ -120,10 +126,7 @@ jobs:
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
- name: Install Python dependencies
|
- name: Install Python dependencies
|
||||||
run: |
|
run: pip install -r tools/requirements.txt
|
||||||
python3 -m pip install --upgrade pip
|
|
||||||
python3 -m pip install setuptools ansicolors sslcrypto
|
|
||||||
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
|
||||||
|
|
||||||
- name: Prepare Build Folders
|
- name: Prepare Build Folders
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue