tools.yml 585 B

123456789101112131415161718192021222324252627
  1. name: Build host tools
  2. on:
  3. pull_request:
  4. paths:
  5. - 'include/**'
  6. - 'tools/**'
  7. - '.github/workflows/tools.yml'
  8. push:
  9. paths:
  10. - 'include/**'
  11. - 'tools/**'
  12. - '.github/workflows/tools.yml'
  13. branches-ignore:
  14. - master
  15. permissions:
  16. contents: read
  17. concurrency:
  18. group: ${{ github.workflow }}-${{ github.ref }}
  19. cancel-in-progress: ${{ github.event_name == 'pull_request' }}
  20. jobs:
  21. build-tools:
  22. name: Build host tools for linux and macos based systems
  23. uses: openwrt/actions-shared-workflows/.github/workflows/tools.yml@main