2022-02-25 11:28:46 +00:00
|
|
|
name: Build host tools
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
2023-05-23 12:27:05 +00:00
|
|
|
- 'include/**'
|
2022-02-25 11:28:46 +00:00
|
|
|
- 'tools/**'
|
2022-03-30 00:43:17 +00:00
|
|
|
- '.github/workflows/tools.yml'
|
2022-08-08 21:37:54 +00:00
|
|
|
push:
|
|
|
|
paths:
|
2023-05-23 12:27:05 +00:00
|
|
|
- 'include/**'
|
2022-08-08 21:37:54 +00:00
|
|
|
- 'tools/**'
|
|
|
|
- '.github/workflows/tools.yml'
|
2023-05-25 11:52:03 +00:00
|
|
|
branches-ignore:
|
|
|
|
- master
|
2022-02-25 11:28:46 +00:00
|
|
|
|
2022-09-19 10:20:37 +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-02-25 11:28:46 +00:00
|
|
|
jobs:
|
2023-06-19 11:55:32 +00:00
|
|
|
build-tools:
|
|
|
|
name: Build host tools for linux and macos based systems
|
|
|
|
uses: openwrt/actions-shared-workflows/.github/workflows/tools.yml@main
|