test azure v6 machines #373
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
| --- | |
| on: | |
| # Run only on pull requests | |
| pull_request: | |
| name: Pull request | |
| jobs: | |
| cleanup: # we remove the Github cache to avoid any conflict | |
| name: Clean Github cache | |
| uses: Cosmian/reusable_workflows/.github/workflows/cleanup_cache.yml@main | |
| secrets: inherit | |
| build-cosmian-vm-binaries: | |
| needs: cleanup | |
| name: Build binaries | |
| uses: ./.github/workflows/build_all.yml | |
| azure: | |
| needs: build-cosmian-vm-binaries | |
| uses: ./.github/workflows/azure_main.yml | |
| with: | |
| product: kms-fips | |
| kms-version: 5.14.0 | |
| ai-runner-version: 1.0.1 | |
| techno: sev | |
| secrets: inherit | |
| gcp: | |
| needs: build-cosmian-vm-binaries | |
| uses: ./.github/workflows/gcp_main.yml | |
| with: | |
| product: kms | |
| kms-version: 5.14.0 | |
| ai-runner-version: 1.0.1 | |
| techno: sev | |
| secrets: inherit | |
| # Too many failures when rebooting EC2 | |
| # aws: | |
| # needs: build-cosmian-vm-binaries | |
| # uses: ./.github/workflows/aws_main.yml | |
| # with: | |
| # product: cosmian-vm | |
| # kms-version: 5.14.0 | |
| # ai-runner-version: 1.0.1 | |
| # techno: sev | |
| # secrets: inherit | |
| release: | |
| name: Release | |
| needs: | |
| - azure | |
| - gcp | |
| # - aws | |
| secrets: inherit | |
| uses: ./.github/workflows/github_release.yml |