still not a clue
release / build (push) Successful in 1m12s

This commit is contained in:
lda
2025-08-25 09:42:11 +07:00 Unverified
parent 2392477ec8
commit bfd1b626d5
8 changed files with 38 additions and 18 deletions
+3 -3
View File
@@ -14,12 +14,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Ensure toolchain and cross
- name: Ensure toolchain and targets
shell: pwsh
run: |
rustc -V
cargo -V
if (-not (Get-Command cross -ErrorAction SilentlyContinue)) { cargo install cross --git https://github.com/cross-rs/cross }
rustup target add armv7-unknown-linux-musleabihf
- name: Cache cargo
uses: actions/cache@v4
@@ -33,7 +33,7 @@ jobs:
- name: Build (armv7-musl)
shell: pwsh
run: |
./scripts/cross_build.ps1 -Release -Targets armv7-unknown-linux-musleabihf
cargo build --release --target armv7-unknown-linux-musleabihf
- name: Package rootfs tarball
shell: pwsh