CI: migrate each workflow to use reusable workflow from dedicated repo
[openwrt/staging/stintel.git] / .github / workflows / tools.yml
1 name: Build host tools
2
3 on:
4 pull_request:
5 paths:
6 - 'include/**'
7 - 'tools/**'
8 - '.github/workflows/tools.yml'
9 push:
10 paths:
11 - 'include/**'
12 - 'tools/**'
13 - '.github/workflows/tools.yml'
14 branches-ignore:
15 - master
16
17 permissions:
18 contents: read
19
20 concurrency:
21 group: ${{ github.workflow }}-${{ github.ref }}
22 cancel-in-progress: ${{ github.event_name == 'pull_request' }}
23
24 jobs:
25 build-tools:
26 name: Build host tools for linux and macos based systems
27 uses: openwrt/actions-shared-workflows/.github/workflows/tools.yml@main