aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/toolchain.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/toolchain.yml')
-rw-r--r--.github/workflows/toolchain.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/toolchain.yml b/.github/workflows/toolchain.yml
index 2a24d82e30..5755ca25b9 100644
--- a/.github/workflows/toolchain.yml
+++ b/.github/workflows/toolchain.yml
@@ -40,8 +40,9 @@ jobs:
JSON='['
FIRST=1
for TARGET in $TARGETS; do
+ TUPLE='{"target":"'"$(echo $TARGET | cut -d "/" -f 1)"'","subtarget":"'"$(echo $TARGET | cut -d "/" -f 2)"'"}'
[[ $FIRST -ne 1 ]] && JSON="$JSON"','
- JSON="$JSON"'"'"${TARGET}"'"'
+ JSON="$JSON""$TUPLE"
FIRST=0
done
JSON="$JSON"']'
@@ -61,8 +62,9 @@ jobs:
strategy:
fail-fast: False
matrix:
- target: ${{fromJson(needs.determine_targets.outputs.target)}}
+ include: ${{fromJson(needs.determine_targets.outputs.target)}}
uses: ./.github/workflows/build.yml
with:
target: ${{ matrix.target }}
+ subtarget: ${{ matrix.subtarget }}
build_toolchain: true