test direct installation of libvirt #415
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: dev | |
| on: | |
| push: | |
| paths-ignore: | |
| - "**/README.md" | |
| - "docs/**" | |
| pull_request: | |
| paths-ignore: | |
| - "**/README.md" | |
| - "docs/**" | |
| jobs: | |
| set_version: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| VERSION: ${{ steps.version.outputs.VERSION }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: use VERSION file to support dev build on rel-branch | |
| id: version | |
| run: echo "VERSION=$(cat VERSION)" >> $GITHUB_OUTPUT | |
| build: | |
| needs: [set_version] | |
| uses: gardenlinux/gardenlinux/.github/workflows/build.yml@bced61a3657ac2335f3baf1cae37e0f859313ee1 | |
| with: | |
| version: ${{ needs.set_version.outputs.VERSION }} | |
| # to set target to "release" or "nightly" we need proper KMS secrets | |
| # have a look at gardenlinux/.github/workflows/github.mjs | |
| target: dev | |
| fail_fast: true | |
| platform_test_build: false | |
| # secrets: | |
| # aws_region: ${{ secrets.AWS_REGION }} | |
| # aws_kms_role: ${{ secrets.KMS_SIGNING_IAM_ROLE }} | |
| # aws_oidc_session: ${{ secrets.AWS_OIDC_SESSION }} | |
| # secureboot_db_kms_arn: ${{ secrets.SECUREBOOT_DB_KMS_ARN }} |