We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e63058 commit 91dd4fcCopy full SHA for 91dd4fc
.github/workflows/blackbox_tests.yml
@@ -46,6 +46,15 @@ jobs:
46
- name: Checkout
47
uses: actions/checkout@v3
48
49
+ - name: Environment Setup
50
+ run: |
51
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
52
+
53
+ west init -l . || true
54
+ west config --global update.narrow true
55
+ west update --path-cache /github/cache/zephyrproject 2>&1 1> west.update.log || west update --path-cache /github/cache/zephyrproject 2>&1 1> west.update.log || ( rm -rf ../modules ../bootloader ../tools && west update --path-cache /github/cache/zephyrproject)
56
+ west forall -c 'git reset --hard HEAD'
57
58
- name: Set Up Python ${{ matrix.python-version }}
59
uses: actions/setup-python@v4
60
with:
0 commit comments