CI: ignore tiny targets
authorPaul Spooren <[email protected]>
Thu, 24 Jun 2021 00:16:31 +0000 (14:16 -1000)
committerPaul Spooren <[email protected]>
Thu, 24 Jun 2021 17:42:38 +0000 (07:42 -1000)
These target fail on ImageBuilder testing, ignore them.

Signed-off-by: Paul Spooren <[email protected]>
.github/workflows/build.yml

index 5f562393057967619aa4b53c3a555de9ed745f64..fdf762dcbc1db79dddfd2ca215a1a718cb14c278 100644 (file)
@@ -16,7 +16,7 @@ jobs:
     - name: Find targets
       id: find_targets
       run: |
-        TARGETS="$(perl ./scripts/dump-target-info.pl targets 2>/dev/null | awk '{ print $1 }')"
+        TARGETS="$(perl ./scripts/dump-target-info.pl targets 2>/dev/null | awk '{ print $1 }' | grep -v tiny)"
         JSON='{"config": ["default"], "targets":['
         FIRST=1
         for TARGET in $TARGETS; do