Add boot test infrastructure using osbuild/images library (HMS-10336)
#11
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
| name: Check CI config | |
| on: | |
| pull_request: | |
| paths: | |
| - test/config.yml | |
| - test/generate_ci.py | |
| - .gitlab-ci.yml | |
| jobs: | |
| check-ci-config: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: pip install pyyaml | |
| - name: Regenerate .gitlab-ci.yml | |
| run: python3 test/generate_ci.py > .gitlab-ci.yml.generated | |
| - name: Check .gitlab-ci.yml is up to date | |
| run: diff -u .gitlab-ci.yml .gitlab-ci.yml.generated |