github: simplify runner assignment to server-based tags #6
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: GPL-2.0 | ||
| --- | ||
| name: Run kdevops CI Workflow - Push/PR | ||
| on: | ||
| push: | ||
| branches: | ||
| - '**' | ||
| pull_request: | ||
| branches: | ||
| - '**' | ||
| jobs: | ||
| push-pr: | ||
| name: Push/PR kdevops CI | ||
| uses: ./.github/workflows/main.yml | ||
|
Check failure on line 16 in .github/workflows/push.yml
|
||
| secrets: inherit | ||
| strategy: | ||
| fail-fast: false # Don't cancel other jobs if one fails | ||
| matrix: | ||
| ci_workflow: | ||
| - blktests_nvme | ||
| - xfs_reflink_4k | ||
| with: | ||
| ci_workflow: ${{ matrix.ci_workflow }} | ||
| kernel_ref: 'v6.15' | ||
| kernel_tree: 'linux' | ||
| test_mode: 'kdevops-ci' | ||
| tests: '' | ||