Skip to content

Commit

Permalink
fix: add install libudev-dev to various actions
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal committed May 31, 2024
1 parent 96d4dc8 commit bba3122
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: rustup update
- name: install libudev-dev
run: |
sudo apt install -y libudev-dev
- run: rustup target add ${{ matrix.sys.target }}
- if: matrix.sys.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get update && sudo apt-get -y install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ jobs:
path: system-test/js-stellar-sdk

- uses: stellar/actions/rust-cache@main
- name: install libudev-dev
run: |
sudo apt install -y libudev-dev
- name: Build system test with component versions
run: |
cd $GITHUB_WORKSPACE/system-test
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/full-help-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
- uses: actions/checkout@v3
- uses: stellar/actions/rust-cache@main
- run: rustup update
- name: install libudev-dev
run: |
sudo apt install -y libudev-dev
- name: Generate help doc
# this looks goofy to get GITHUB_OUTPUT to work with multi-line return values;
# see https://stackoverflow.com/a/74266196/249801
Expand Down

0 comments on commit bba3122

Please sign in to comment.