aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ci/script.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/ci/script.sh b/ci/script.sh
index 40b03a7e..1bb0ae2e 100644
--- a/ci/script.sh
+++ b/ci/script.sh
@@ -125,6 +125,11 @@ main() {
cargo clean
for ex in ${exs[@]}; do
+ if [ $ex = ramfunc ] && [ $T = thumbv6m-none-eabi ]; then
+ # LLD doesn't support this at the moment
+ continue
+ fi
+
if [ $ex = singleton ]; then
# singleton build is currently not reproducible due to
# https://github.com/japaric/owned-singleton/issues/2