diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 57a6caa1d..d3143196c 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -15,6 +15,12 @@ jobs: - name: Install dependencies run: sudo apt-get install -yqq make autoconf build-essential ca-certificates pkg-config libreadline-dev gcc-arm-none-eabi libnewlib-dev qtbase5-dev libbz2-dev libbluetooth-dev libpython3-dev python3 python3-dev libpython3-all-dev liblua5.2-dev liblua5.2-0-dbg liblua5.2-0 lua5.2 sed + - name: Install Python dependencies + run: | + python -m pip install --upgrade pip + python -m pip install ansicolors + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: make clean run: make clean @@ -40,6 +46,12 @@ jobs: - name: Install dependencies run: sudo apt-get install -yqq make autoconf build-essential ca-certificates pkg-config libreadline-dev gcc-arm-none-eabi libnewlib-dev qtbase5-dev libbz2-dev libbluetooth-dev libpython3-dev python3 python3-dev libpython3-all-dev liblua5.2-dev liblua5.2-0-dbg liblua5.2-0 lua5.2 sed + - name: Install Python dependencies + run: | + python -m pip install --upgrade pip + python -m pip install ansicolors + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: make clean run: make clean @@ -66,6 +78,12 @@ jobs: - name: Install dependencies run: sudo apt-get install -yqq make autoconf build-essential ca-certificates pkg-config libreadline-dev gcc-arm-none-eabi libnewlib-dev qtbase5-dev libbz2-dev libbluetooth-dev libpython3-dev python3 python3-dev libpython3-all-dev liblua5.2-dev liblua5.2-0-dbg liblua5.2-0 lua5.2 sed + - name: Install Python dependencies + run: | + python -m pip install --upgrade pip + python -m pip install ansicolors + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Prepare Build Folders run: mkdir -p client/build