Skip to content

Commit 9d0c3e7

Browse files
committed
More attempts at fixing the build
1 parent 30ae8e4 commit 9d0c3e7

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/build.yml

-2
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ jobs:
9696
BOARD: ${{ matrix.board }}
9797
UPLOADTOKEN: ${{ secrets.UPLOADTOKEN }}
9898
run: |
99-
python3.8 -m pip install --user pipx # hack to ensure pipx runs in python 3.8
100-
python3.8 -m pipx ensurepath
10199
source ./scripts/provision.sh ${{ matrix.board }}
102100
make
103101
./scripts/ci_upload.sh

scripts/provision.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ if [ "$PROVISION_NRF52" = "1" ]; then
186186
fi
187187
# Because nrfutil doesn't support the latest version of python! Yay!
188188
echo Installing nrfutil
189-
sudo pipx install nrfutil --python "$(which python3.8)" || cat /opt/pipx/logs/*
189+
sudo pipx install nrfutil --python "$(which python3.8)" --pip-args="ubjson==0.16.1" || cat /opt/pipx/logs/*
190190
fi
191191
ARM=1
192192

0 commit comments

Comments
 (0)