From a9e3c2779e51c052d642cfc594c1e14859384952 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 22 Feb 2021 22:33:47 +0100 Subject: [PATCH] adapt workflow for macos and python dependencies --- .github/workflows/macos.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index c476fbefe..9f3ec3023 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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