2022-12-06 23:52:41 +00:00
|
|
|
name: Build Toolchains
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/toolchain.yml'
|
|
|
|
- 'toolchain/**'
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/toolchain.yml'
|
|
|
|
- 'toolchain/**'
|
2023-05-25 11:52:03 +00:00
|
|
|
branches-ignore:
|
|
|
|
- master
|
2022-12-06 23:52:41 +00:00
|
|
|
|
|
|
|
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:
|
2023-06-19 11:55:32 +00:00
|
|
|
build-toolchains:
|
|
|
|
name: Build Toolchains for each target
|
2022-12-06 23:52:41 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: read
|
2023-05-28 00:55:26 +00:00
|
|
|
actions: write
|
2023-06-19 11:55:32 +00:00
|
|
|
uses: openwrt/actions-shared-workflows/.github/workflows/toolchain.yml@main
|