We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59d926b commit 067f8ebCopy full SHA for 067f8eb
2 files changed
.github/workflows/code_coverage.yml
@@ -16,8 +16,10 @@ jobs:
16
uses: actions/checkout@v4
17
with:
18
persist-credentials: false
19
- - name: Install lcov tools
20
- run: sudo apt-get install lcov -y
+ - name: Install system dependencies
+ run: |
21
+ sudo apt-get update
22
+ sudo apt-get install -y libudev-dev libusb-1.0-0-dev lcov
23
- name: Install Rust toolchain
24
uses: actions-rs/toolchain@v1
25
.github/workflows/cont_integration.yml
@@ -18,6 +18,11 @@ jobs:
steps:
- name: Checkout
+ # hwi (async-hwi) depends on libudev-sys
+ sudo apt-get install -y libudev-dev libusb-1.0-0-dev
26
- name: Generate cache key
27
run: echo "${{ matrix.rust }} ${{ matrix.features }}" | tee .cache_key
28
- name: Cache
0 commit comments