Firmware for the b-parasite board, but in Rust.

fix ci #6

merged opened by tjh.dev targeting main from [deleted fork]: main
Labels

None yet.

assignee

None yet.

Participants 2
AT URI
at://did:plc:65gha4t3avpfpzmvpbwovss7/sh.tangled.repo.pull/3m7pwunrmhj22
+16 -4
Diff #0
+16 -4
.tangled/workflows/test.yml
··· 6 7 dependencies: 8 nixpkgs: 9 - rustup 10 11 steps: 12 - name: Install Nightly 13 - command: rustup toolchain install nightly 14 - name: Install toolchain 15 - command: rustup +nightly target install thumbv7em-none-eabihf 16 - - name: Format Check 17 - command: cargo fmt --check
··· 6 7 dependencies: 8 nixpkgs: 9 + - clang 10 + - glibc_multi 11 + - libclang 12 - rustup 13 + - rust-bindgen 14 15 steps: 16 - name: Install Nightly 17 + command: | 18 + rustup toolchain install nightly 19 - name: Install toolchain 20 + command: | 21 + rustup +nightly target install thumbv7em-none-eabihf 22 + - name: Install flip-link 23 + command: | 24 + cargo install --locked flip-link 25 + - name: Build 26 + command: | 27 + export LIBCLANG_PATH="$(nix build nixpkgs#libclang.lib --no-link --print-out-paths)/lib" 28 + export BINDGEN_EXTRA_CLANG_ARGS="-I$(nix build nixpkgs#glibc_multi.dev --no-link --print-out-paths)/include" 29 + cargo build --release

History

2 rounds 2 comments
sign up or login to add to the discussion
1 commit
expand
3adc49a4
fix ci
expand 1 comment

Many, many thanks.

pull request successfully merged
tjh.dev submitted #0
1 commit
expand
29d83c80
fix ci
expand 1 comment

Actually huge. Thanks so much! If you could add back the format check, I'll merge this as is since this passes