Skip to content
Snippets Groups Projects
Commit 3a9e5d05 authored by bors's avatar bors
Browse files

Auto merge of #1527 - Wind-River:filter, r=gnzlbg

Add environment variable FILTER to choose which target(s) to run
parents 74c4b150 c6c66452
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,8 @@
# Checks that libc builds properly for all supported targets on a particular
# Rust version:
# The FILTER environment variable can be used to select which target(s) to build.
# For example: set FILTER to vxworks to select the targets that has vxworks in name
set -ex
......@@ -176,7 +178,9 @@ case "${OS}" in
esac
for TARGET in $TARGETS; do
test_target build "$TARGET"
if echo "$TARGET"|grep -q "$FILTER";then
test_target build "$TARGET"
fi
done
# FIXME: https://github.com/rust-lang/rust/issues/58564
......@@ -237,7 +241,9 @@ powerpc64-wrs-vxworks \
if [ "${RUST}" = "nightly" ] && [ "${OS}" = "linux" ]; then
for TARGET in $RUST_LINUX_NO_CORE_TARGETS; do
test_target xbuild "$TARGET" 1
if echo "$TARGET"|grep -q "$FILTER";then
test_target xbuild "$TARGET" 1
fi
done
# Nintendo switch
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment