Skip to content

Commit

Permalink
Merge pull request #2 from quic/holding-cell-build
Browse files Browse the repository at this point in the history
Build Fixes
  • Loading branch information
eberman-quic authored Dec 18, 2024
2 parents e712bae + 6b289ee commit e04dfba
Show file tree
Hide file tree
Showing 7 changed files with 329 additions and 21 deletions.
5 changes: 2 additions & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ linker = "android-ndk/arm64/bin/aarch64-linux-android-clang"
runner = "runners/adb_runner.sh"

[env]
CC_aarch64-linux-android = { value = "android-ndk/arm64/bin/aarch64-linux-android-clang", relative = true }
OBJCOPY = { value = "android-ndk/arm64/bin/llvm-objcopy", relative = true }
AR_aarch64-linux-android = { value = "android-ndk/arm64/bin/llvm-ar", relative = true }
CC_aarch64_linux_android = { value = "android-ndk/arm64/bin/aarch64-linux-android-clang", relative = true }
AR_aarch64_linux_android = { value = "android-ndk/arm64/bin/llvm-ar", relative = true }
RUST_TEST_THREADS = "1"
6 changes: 4 additions & 2 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-targets --all-features
- name: Setup build
run: sudo apt-get install gcc-aarch64-linux-gnu && rustup component add llvm-tools && rustup target add aarch64-unknown-linux-gnu
- name: Clippy
run: cargo clippy --all-targets --all-features --target aarch64-unknown-linux-gnu
- name: Run Format
run: cargo fmt --all -- --check
Loading

0 comments on commit e04dfba

Please sign in to comment.