-
Notifications
You must be signed in to change notification settings - Fork 2
51 lines (45 loc) · 1.03 KB
/
pull_request.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
on:
# Run only on pull requests
pull_request:
name: Pull request
jobs:
build-cosmian-vm-binaries:
name: Build binaries
uses: ./.github/workflows/build_all.yml
azure:
needs: build-cosmian-vm-binaries
uses: ./.github/workflows/azure_main.yml
with:
product: cosmian-vm
kms-version: 4.21.1
ai-runner-version: 0.3.0
techno: sev
secrets: inherit
gcp:
needs: build-cosmian-vm-binaries
uses: ./.github/workflows/gcp_main.yml
with:
product: cosmian-vm
kms-version: 4.21.1
ai-runner-version: 0.3.0
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: 4.21.1
# ai-runner-version: 0.3.0
# techno: sev
# secrets: inherit
release:
name: Release
needs:
- azure
- gcp
# - aws
secrets: inherit
uses: ./.github/workflows/github_release.yml