Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-ethereum-contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# install will fail if this isn't in the build environment and if a
# precompiled binary isn't found.
- name: Install libusb
run: sudo apt install -y libusb-1.0-0-dev libudev-dev
run: sudo apt-get update && sudo apt-get install -y libusb-1.0-0-dev libudev-dev

- uses: pnpm/action-setup@v4
name: Install pnpm
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-lazer-solana-contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
pull_request:
paths:
- lazer/**
- .github/workflows/ci-lazer-solana-contract.yml

jobs:
lazer-solana-contract-test:
Expand All @@ -28,7 +29,7 @@ jobs:
# install will fail if this isn't in the build environment and if a
# precompiled binary isn't found.
- name: Install libusb
run: sudo apt install -y libusb-1.0-0-dev libudev-dev
run: sudo apt-get update && sudo apt-get install -y libusb-1.0-0-dev libudev-dev
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-message-buffer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
# install will fail if this isn't in the build environment and if a
# precompiled binary isn't found.
- name: Install libusb
run: sudo apt install -y libusb-1.0-0-dev libudev-dev
run: sudo apt-get update && sudo apt-get install -y libusb-1.0-0-dev libudev-dev
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-turbo-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- "**/package.json"
- "**/package-lock.json"
- "**/tsconfig.json"
- .github/workflows/ci-turbo-build.yml
push:
branches: [main]
jobs:
Expand All @@ -24,7 +25,7 @@ jobs:
# install will fail if this isn't in the build environment and if a
# precompiled binary isn't found.
- name: Install libusb
run: sudo apt install -y libusb-1.0-0-dev libudev-dev
run: sudo apt-get update && sudo apt-get install -y libusb-1.0-0-dev libudev-dev
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-turbo-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- "**/package.json"
- "**/package-lock.json"
- "**/tsconfig.json"
- .github/workflows/ci-turbo-test.yml
push:
branches: [main]
jobs:
Expand All @@ -23,7 +24,7 @@ jobs:
# install will fail if this isn't in the build environment and if a
# precompiled binary isn't found.
- name: Install libusb
run: sudo apt install -y libusb-1.0-0-dev libudev-dev
run: sudo apt-get update && sudo apt-get install -y libusb-1.0-0-dev libudev-dev
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# install will fail if this isn't in the build environment and if a
# precompiled binary isn't found.
- name: Install libusb
run: sudo apt install -y libusb-1.0-0-dev libudev-dev
run: sudo apt-get update && sudo apt-get install -y libusb-1.0-0-dev libudev-dev
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
Expand Down
Loading