adapt workflow for macos and python dependencies
This commit is contained in:
18
.github/workflows/macos.yml
vendored
18
.github/workflows/macos.yml
vendored
@@ -25,6 +25,12 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: brew install readline qt5 RfidResearchGroup/proxmark3/arm-none-eabi-gcc
|
||||
|
||||
- name: Install Python dependencies
|
||||
run: |
|
||||
python3 -m pip install --upgrade pip
|
||||
python3 -m pip install ansicolors
|
||||
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
||||
|
||||
- name: make clean
|
||||
run: make clean
|
||||
|
||||
@@ -60,6 +66,12 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: brew install readline qt5 RfidResearchGroup/proxmark3/arm-none-eabi-gcc
|
||||
|
||||
- name: Install Python dependencies
|
||||
run: |
|
||||
python3 -m pip install --upgrade pip
|
||||
python3 -m pip install ansicolors
|
||||
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
||||
|
||||
- name: make clean
|
||||
run: make clean
|
||||
|
||||
@@ -96,6 +108,12 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: brew install readline qt5 RfidResearchGroup/proxmark3/arm-none-eabi-gcc
|
||||
|
||||
- name: Install Python dependencies
|
||||
run: |
|
||||
python3 -m pip install --upgrade pip
|
||||
python3 -m pip install ansicolors
|
||||
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
||||
|
||||
- name: Prepare Build Folders
|
||||
run: mkdir -p client/build
|
||||
|
||||
|
||||
Reference in New Issue
Block a user