ci: new attempt at using hosted runner

This commit is contained in:
izzy
2025-05-09 22:39:29 +01:00
parent 9c8a362e9f
commit c785ae615d
2 changed files with 128 additions and 76 deletions

View File

@@ -54,9 +54,9 @@ deps() {
tee crates/core/result/src/lib.rs
if [ -z "$TARGETARCH" ]; then
cargo build --locked --release
cargo build -j 24 --locked --release
else
cargo build --locked --release --target "${BUILD_TARGET}"
cargo build -j 24 --locked --release --target "${BUILD_TARGET}"
fi
}
@@ -74,9 +74,9 @@ apps() {
crates/core/result/src/lib.rs
if [ -z "$TARGETARCH" ]; then
cargo build --locked --release
cargo build -j 24 --locked --release
else
cargo build --locked --release --target "${BUILD_TARGET}"
cargo build -j 24 --locked --release --target "${BUILD_TARGET}"
mv target _target && mv _target/"${BUILD_TARGET}" target
fi
}