-
Notifications
You must be signed in to change notification settings - Fork 208
84 lines (72 loc) · 2.07 KB
/
snapshot-all.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
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Snapshot - Eclipse LS Extensions
concurrency:
group: snapshot-all
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- 'main'
jobs:
language-servers-multiplatform-build:
uses: ./.github/workflows/multiplatform-ls-build.yml
with:
java_version: '21'
skip_tests: false
secrets: inherit
eclipse-ls-extensions:
needs: [ language-servers-multiplatform-build ]
uses: ./.github/workflows/eclipse-ls-extensions-build.yml
with:
eclipse_profile: 'e433'
build_type: 'snapshot'
skip_tests: true
secrets: inherit
e433-distro:
needs: [ eclipse-ls-extensions ]
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e433'
build_type: 'snapshot'
java_version: '21'
secrets: inherit
e434-distro:
needs: [ eclipse-ls-extensions ]
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e434'
build_type: 'snapshot'
java_version: '21'
secrets: inherit
e435-distro:
needs: [ eclipse-ls-extensions ]
uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml
with:
eclipse_profile: 'e435'
build_type: 'snapshot'
java_version: '21'
secrets: inherit
vscode-spring-boot:
needs: [ language-servers-multiplatform-build ]
uses: ./.github/workflows/snapshot-vscode-extension.yml
with:
extension-name: vscode-spring-boot
secrets: inherit
vscode-concourse:
needs: [ language-servers-multiplatform-build ]
uses: ./.github/workflows/snapshot-vscode-extension.yml
with:
extension-name: vscode-concourse
secrets: inherit
vscode-manifest-yaml:
needs: [ language-servers-multiplatform-build ]
uses: ./.github/workflows/snapshot-vscode-extension.yml
with:
extension-name: vscode-manifest-yaml
secrets: inherit
vscode-bosh:
needs: [ language-servers-multiplatform-build ]
uses: ./.github/workflows/snapshot-vscode-extension.yml
with:
extension-name: vscode-bosh
secrets: inherit