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 ab035ce commit f7213a7Copy full SHA for f7213a7
.github/actions/deps/external/action.yml
@@ -50,13 +50,6 @@ runs:
50
echo >> $GITHUB_PATH "$PATH"
51
shell: bash
52
53
- - name: Get libusb
54
- if: inputs.port == 'zephyr-cp'
55
- run: |
56
- sudo apt-get update
57
- sudo apt-get install -y libusb-1.0-0-dev
58
- shell: bash
59
-
60
# common
61
- name: Cache python dependencies
62
if: inputs.port != 'espressif' && inputs.port != 'zephyr-cp'
.github/actions/deps/ports/zephyr-cp/action.yml
@@ -3,6 +3,11 @@ name: Fetch Zephyr port deps
3
runs:
4
using: composite
5
steps:
6
+ - name: Get libusb
7
+ run: |
8
+ sudo apt-get update
9
+ sudo apt-get install -y libusb-1.0-0-dev
10
+ shell: bash
11
- name: Setup Zephyr project
12
uses: zephyrproject-rtos/action-zephyr-setup@v1
13
with:
0 commit comments