2022-12-06 23:52:41 +00:00
|
|
|
name: Build Toolchains
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/build.yml'
|
|
|
|
- '.github/workflows/toolchain.yml'
|
|
|
|
- 'toolchain/**'
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/build.yml'
|
|
|
|
- '.github/workflows/toolchain.yml'
|
|
|
|
- 'toolchain/**'
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2023-01-11 12:52:38 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
|
|
|
2022-12-06 23:52:41 +00:00
|
|
|
jobs:
|
|
|
|
determine_targets:
|
|
|
|
name: Set targets
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
target: ${{ steps.find_targets.outputs.target }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set targets
|
|
|
|
id: find_targets
|
|
|
|
run: |
|
|
|
|
export TARGETS="$(perl ./scripts/dump-target-info.pl targets 2>/dev/null \
|
|
|
|
| sort -u -t '/' -k1,1 \
|
|
|
|
| awk '{ print $1 }')"
|
|
|
|
|
|
|
|
JSON='['
|
|
|
|
FIRST=1
|
|
|
|
for TARGET in $TARGETS; do
|
2023-05-22 14:47:08 +00:00
|
|
|
TUPLE='{"target":"'"$(echo $TARGET | cut -d "/" -f 1)"'","subtarget":"'"$(echo $TARGET | cut -d "/" -f 2)"'"}'
|
2022-12-06 23:52:41 +00:00
|
|
|
[[ $FIRST -ne 1 ]] && JSON="$JSON"','
|
2023-05-22 14:47:08 +00:00
|
|
|
JSON="$JSON""$TUPLE"
|
2022-12-06 23:52:41 +00:00
|
|
|
FIRST=0
|
|
|
|
done
|
|
|
|
JSON="$JSON"']'
|
|
|
|
|
|
|
|
echo -e "\n---- targets ----\n"
|
|
|
|
echo "$JSON"
|
|
|
|
echo -e "\n---- targets ----\n"
|
|
|
|
|
|
|
|
echo "target=$JSON" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
build:
|
|
|
|
name: Build Target Toolchain
|
|
|
|
needs: determine_targets
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: read
|
|
|
|
strategy:
|
|
|
|
fail-fast: False
|
|
|
|
matrix:
|
2023-05-22 14:47:08 +00:00
|
|
|
include: ${{fromJson(needs.determine_targets.outputs.target)}}
|
2022-12-06 23:52:41 +00:00
|
|
|
uses: ./.github/workflows/build.yml
|
|
|
|
with:
|
|
|
|
target: ${{ matrix.target }}
|
2023-05-22 14:47:08 +00:00
|
|
|
subtarget: ${{ matrix.subtarget }}
|
2022-12-06 23:52:41 +00:00
|
|
|
build_toolchain: true
|