aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-05-14 08:39:36 +0000
committerGitHub <[email protected]>2025-05-14 08:39:36 +0000
commit870296fcd481806d925c0f0a7f5f856e090b42d1 (patch)
tree0f2339a35bee895b2dc6ff5e8912717b24729251
parent5a19b64fec396db1ababa6d3e7a71f4b3c6bab18 (diff)
parent8bb25a551abbf3677a440d6f73401b88cf4de57f (diff)
Merge pull request #4195 from i509VCB/std-test-aarch64
ci: build std examples on aarch64-unknown-linux-gnu (local)
-rwxr-xr-xci.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci.sh b/ci.sh
index 6e320e4d1..f2d461c1a 100755
--- a/ci.sh
+++ b/ci.sh
@@ -19,7 +19,7 @@ fi
19TARGET=$(rustc -vV | sed -n 's|host: ||p') 19TARGET=$(rustc -vV | sed -n 's|host: ||p')
20 20
21BUILD_EXTRA="" 21BUILD_EXTRA=""
22if [ $TARGET = "x86_64-unknown-linux-gnu" ]; then 22if [ $TARGET = "x86_64-unknown-linux-gnu" ] || [ $TARGET = "aarch64-unknown-linux-gnu" ]; then
23 BUILD_EXTRA="--- build --release --manifest-path examples/std/Cargo.toml --target $TARGET --artifact-dir out/examples/std" 23 BUILD_EXTRA="--- build --release --manifest-path examples/std/Cargo.toml --target $TARGET --artifact-dir out/examples/std"
24fi 24fi
25 25