Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions .github/workflows/arm64e-stage1-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,16 @@ jobs:
EOF
rustup toolchain install nightly --profile minimal
cargo +nightly generate-lockfile --manifest-path "$SMOKE_ROOT/Cargo.toml"
env \
CARGO_TARGET_DIR="$SMOKE_ROOT/target" \
RUSTC="$STAGE1_RUSTC" \
cargo +nightly build --locked -Zbuild-std \
--target arm64e-apple-darwin \
--manifest-path "$SMOKE_ROOT/Cargo.toml" \
2>&1 | tee /tmp/arm64e-stage1-diagnostics/generic-array-smoke.log
for smoke_target in arm64e-apple-darwin arm64e-apple-ios arm64e-apple-visionos; do
echo "=== generic-array smoke: ${smoke_target} ==="
env \
CARGO_TARGET_DIR="$SMOKE_ROOT/target-${smoke_target}" \
RUSTC="$STAGE1_RUSTC" \
cargo +nightly build --locked -Zbuild-std \
--target "$smoke_target" \
--manifest-path "$SMOKE_ROOT/Cargo.toml" \
2>&1 | tee "/tmp/arm64e-stage1-diagnostics/generic-array-smoke-${smoke_target}.log"
done

bsdtar -cf - -C dist stage1-arm64e-patch | zstd -T0 -19 -o "${ASSET_BASE}.tar.zst"
shasum -a 256 "${ASSET_BASE}.tar.zst" > "${ASSET_BASE}.sha256"
Expand Down
Loading