mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-11 08:09:20 +00:00
38cc09165f
Migrate each workflow to use reusable workflow from dedicated repo to skip pushing CI related commits to openwrt and better track versioning of CI workflow. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
28 lines
585 B
YAML
28 lines
585 B
YAML
name: Build host tools
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'include/**'
|
|
- 'tools/**'
|
|
- '.github/workflows/tools.yml'
|
|
push:
|
|
paths:
|
|
- 'include/**'
|
|
- 'tools/**'
|
|
- '.github/workflows/tools.yml'
|
|
branches-ignore:
|
|
- master
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
|
|
jobs:
|
|
build-tools:
|
|
name: Build host tools for linux and macos based systems
|
|
uses: openwrt/actions-shared-workflows/.github/workflows/tools.yml@main
|