Merge pull request #4195 from i509VCB/std-test-aarch64

ci: build std examples on aarch64-unknown-linux-gnu (local)
This commit is contained in:
Dario Nieuwenhuis 2025-05-14 08:39:36 +00:00 committed by GitHub
commit 870296fcd4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

2
ci.sh
View File

@ -19,7 +19,7 @@ fi
TARGET=$(rustc -vV | sed -n 's|host: ||p')
BUILD_EXTRA=""
if [ $TARGET = "x86_64-unknown-linux-gnu" ]; then
if [ $TARGET = "x86_64-unknown-linux-gnu" ] || [ $TARGET = "aarch64-unknown-linux-gnu" ]; then
BUILD_EXTRA="--- build --release --manifest-path examples/std/Cargo.toml --target $TARGET --artifact-dir out/examples/std"
fi