2022-02-25 12:28:46 +01:00
|
|
|
name: Build host tools
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
2023-05-23 14:27:05 +02:00
|
|
|
- 'include/**'
|
2022-02-25 12:28:46 +01:00
|
|
|
- 'tools/**'
|
2022-03-30 01:43:17 +01:00
|
|
|
- '.github/workflows/tools.yml'
|
2022-08-08 23:37:54 +02:00
|
|
|
push:
|
|
|
|
paths:
|
2023-05-23 14:27:05 +02:00
|
|
|
- 'include/**'
|
2022-08-08 23:37:54 +02:00
|
|
|
- 'tools/**'
|
|
|
|
- '.github/workflows/tools.yml'
|
2023-05-25 13:52:03 +02:00
|
|
|
branches-ignore:
|
|
|
|
- master
|
2022-02-25 12:28:46 +01:00
|
|
|
|
2022-09-19 12:20:37 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2023-01-11 13:52:38 +01:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
|
|
|
2022-02-25 12:28:46 +01:00
|
|
|
jobs:
|
2023-06-19 13:55:32 +02:00
|
|
|
build-tools:
|
|
|
|
name: Build host tools for linux and macos based systems
|
|
|
|
uses: openwrt/actions-shared-workflows/.github/workflows/tools.yml@main
|