Skip to content

Commit fea679f

Browse files
committed
Merge branch 'master' into feat/base-layer-ix/recover-finalize
2 parents d4fd058 + 33f33b7 commit fea679f

File tree

150 files changed

+981
-709
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+981
-709
lines changed

.github/actions/setup-build-env/action.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,14 @@ runs:
2727
shell: "bash"
2828
run: rustup toolchain install ${{ inputs.rust_toolchain_release }} --profile default
2929

30-
- name: Install libudev # new solana crates need this lib
30+
- name: Install system deps (libudev, LLVM/Clang)
3131
if: runner.os == 'Linux'
3232
shell: "bash"
33-
run: sudo apt-get update && sudo apt-get install -y libudev-dev
33+
run: |
34+
sudo apt-get update
35+
sudo apt-get install -y \
36+
libudev-dev \
37+
libclang-dev
3438
3539
- uses: Swatinem/rust-cache@v2
3640
with:

Cargo.lock

Lines changed: 141 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)