-
Notifications
You must be signed in to change notification settings - Fork 1
71 lines (69 loc) · 1.69 KB
/
main-workflow.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Build and push Docker images
on:
workflow_dispatch:
#schedule:
# - cron: '0 1 * * 1'
jobs:
# === Ada
ada-minimal:
uses: ./.github/workflows/main-workflow-template.yml
with:
image: ada-minimal
context: ada-minimal
base_image: base
ada_versions: 12.3.0
secrets: inherit
ada-gpr:
needs: [ada-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: ada-gpr
context: ada-gpr
base_image: ada-minimal
ada_versions: 12.3.0
secrets: inherit
ada-gpr-alr:
needs: [ada-gpr]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: ada-gpr-alr
context: ada-gpr-alr
base_image: ada-gpr
ada_versions: 12.3.0
secrets: inherit
ada-gpr-alr-vscode:
needs: [ada-gpr-alr]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: ada-gpr-alr-vscode
context: vscode
base_image: ada-gpr-alr
ada_versions: 12.3.0
secrets: inherit
# === Java
java-minimal:
uses: ./.github/workflows/main-workflow-template.yml
with:
image: java-minimal
context: java-minimal
base_image: base
java_versions: 11,17,20
secrets: inherit
java-maven:
needs: [java-minimal]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: java-maven
context: java-maven
base_image: java-minimal
java_versions: 11,17,20
secrets: inherit
java-maven-vscode:
needs: [java-maven]
uses: ./.github/workflows/main-workflow-template.yml
with:
image: java-maven-vscode
context: vscode
base_image: java-maven
java_versions: 11,17,20
secrets: inherit