We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30ae8e4 commit 9d0c3e7Copy full SHA for 9d0c3e7
.github/workflows/build.yml
@@ -96,8 +96,6 @@ jobs:
96
BOARD: ${{ matrix.board }}
97
UPLOADTOKEN: ${{ secrets.UPLOADTOKEN }}
98
run: |
99
- python3.8 -m pip install --user pipx # hack to ensure pipx runs in python 3.8
100
- python3.8 -m pipx ensurepath
101
source ./scripts/provision.sh ${{ matrix.board }}
102
make
103
./scripts/ci_upload.sh
scripts/provision.sh
@@ -186,7 +186,7 @@ if [ "$PROVISION_NRF52" = "1" ]; then
186
fi
187
# Because nrfutil doesn't support the latest version of python! Yay!
188
echo Installing nrfutil
189
- sudo pipx install nrfutil --python "$(which python3.8)" || cat /opt/pipx/logs/*
+ sudo pipx install nrfutil --python "$(which python3.8)" --pip-args="ubjson==0.16.1" || cat /opt/pipx/logs/*
190
191
ARM=1
192
0 commit comments