ci: build std examples on aarch64-unknown-linux-gnu

This commit is contained in:
i509VCB 2025-05-13 22:53:16 -05:00
parent 5caa4ac51b
commit 8bb25a551a
No known key found for this signature in database
GPG Key ID: 3E860D038915EF88

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