We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6626f6e commit ce9932bCopy full SHA for ce9932b
.github/workflows/package_core.yml
@@ -44,6 +44,13 @@ jobs:
44
45
- name: Build variants
46
run: |
47
+ echo x${{ env.BOARD_VARIANTS }}x
48
+ echo "$BOARD_VARIANTS" | jq -c '.[]' | while read -r BOARD_VARIANT; do
49
+ echo "y${BOARD_VARIANT}y"
50
+ BOARD=$(echo $BOARD_VARIANT | jq -cr '.board')
51
+ VARIANT=$(echo $BOARD_VARIANT | jq -cr '.variant')
52
+ echo "Building $BOARD ($VARIANT)"
53
+ echo
54
./extra/build_all.sh -f
55
56
- name: Package
0 commit comments