Skip to content

Commit afff1f5

Browse files
committed
fix: remove redundant libusb install
I discovered that these tasks all install libusb twice, probably due to separate branches including similar fixes that were open at the same time. This PR removes the redundant installation.
1 parent 534006d commit afff1f5

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

.github/workflows/ci-turbo-build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515
build:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- name: Install libusb
19-
run: sudo apt install -y libusb-1.0-0-dev
2018
- uses: actions/checkout@v4
2119
- uses: Swatinem/rust-cache@v2
2220
- uses: actions/setup-node@v4

.github/workflows/ci-turbo-test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515
test:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- name: Install libusb
19-
run: sudo apt install -y libusb-1.0-0-dev
2018
- uses: actions/checkout@v4
2119
- uses: actions/setup-node@v4
2220
with:

.github/workflows/publish-js.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ jobs:
99
name: Publish Javascript Packages to NPM
1010
runs-on: ubuntu-latest
1111
steps:
12-
- name: Install libusb
13-
run: sudo apt install -y libusb-1.0-0-dev
1412
- uses: actions/checkout@v2
1513
- uses: actions/setup-node@v4
1614
with:

0 commit comments

Comments
 (0)