-
Notifications
You must be signed in to change notification settings - Fork 8
199 lines (182 loc) · 6.71 KB
/
ant.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
name: Java CI
on: [push, pull_request]
permissions:
checks: write
contents: read
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Download WiX
run: gh release download wix3112rtm --repo wixtoolset/wix3 --pattern 'wix311-binaries.zip'
env:
GH_TOKEN: ${{ github.token }}
- name: Decompress WiX
run: 7z x wix311-binaries.zip -o".\target\wix" -aoa
- name: Add WiX to Path
run: echo "$HOME/target/wix" >> $GITHUB_PATH
- uses: actions/checkout@v4
- name: Get dependent binaries from cache
uses: actions/cache@v4
with:
path: ./dependencies
key: swt-jface-lwjgl3zip-tools-windows-v5
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- name: Build with Ant
run: ant -noinput -buildfile build-windows.xml
- name: Publish Test Report
uses: mikepenz/action-junit-report@db71d41eb79864e25ab0337e395c352e84523afe #v4.3.1
with:
check_name: junit-windows
report_paths: '**/report/TEST-*.xml'
fail_on_failure: true
require_passed_tests: true
- name: Archive windows installer for win32-x64
uses: actions/upload-artifact@v4
id: artifact-upload-step1
with:
name: LDPartEditor_win32_x64
path: bin/windows/setup
- name: Output artifact ID
run: echo 'Artifact ID is ${{ steps.artifact-upload-step1.outputs.artifact-id }}'
- name: Download artifact
run: gh api /repos/${{ github.repository }}/actions/artifacts/${{ steps.artifact-upload-step1.outputs.artifact-id }}/zip > LDPartEditor_win32_x64.zip
env:
GH_TOKEN: ${{ github.token }}
- name: Calculate SHA
run: (certutil -hashfile LDPartEditor_win32_x64.zip SHA256 | findstr /V ":") > LDPartEditor_win32_x64_sha256_checksum.txt
- name: Archive checksum
uses: actions/upload-artifact@v4
with:
name: LDPartEditor_win32_x64_sha256_checksum
path: LDPartEditor_win32_x64_sha256_checksum.txt
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get dependent binaries from cache
uses: actions/cache@v4
with:
path: ./dependencies
key: swt-jface-lwjgl3zip-tools-linux-v5
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- name: Build with Ant
run: ant -noinput -buildfile build-linux.xml
- name: Publish Test Report
uses: mikepenz/action-junit-report@db71d41eb79864e25ab0337e395c352e84523afe #v4.3.1
with:
check_name: junit-linux
report_paths: '**/report/TEST-*.xml'
fail_on_failure: true
require_passed_tests: true
- name: Archive linux installer for gtk3-x64
uses: actions/upload-artifact@v4
id: artifact-upload-step2
with:
name: LDPartEditor_linux_x64
path: bin/linux-gtk3/setup
- name: Output artifact ID
run: echo 'Artifact ID is ${{ steps.artifact-upload-step2.outputs.artifact-id }}'
- name: Download artifact
run: gh api /repos/${{ github.repository }}/actions/artifacts/${{ steps.artifact-upload-step2.outputs.artifact-id }}/zip > LDPartEditor_linux_x64.zip
env:
GH_TOKEN: ${{ github.token }}
- name: Calculate SHA
run: shasum -a 256 LDPartEditor_linux_x64.zip > LDPartEditor_linux_x64_sha256_checksum.txt
- name: Archive checksum
uses: actions/upload-artifact@v4
with:
name: LDPartEditor_linux_x64_sha256_checksum
path: LDPartEditor_linux_x64_sha256_checksum.txt
build-macos-arm:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Get dependent binaries from cache
uses: actions/cache@v4
with:
path: ./dependencies
key: swt-jface-lwjgl3zip-tools-macos-arm-v5
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- name: Build with Ant
run: ant -noinput -buildfile build-macos-arm.xml
- name: Publish Test Report
uses: mikepenz/action-junit-report@db71d41eb79864e25ab0337e395c352e84523afe #v4.3.1
with:
check_name: junit-macos-arm
report_paths: '**/report/TEST-*.xml'
fail_on_failure: true
require_passed_tests: true
- name: Archive macosx installer for cocoa-x64
uses: actions/upload-artifact@v4
id: artifact-upload-step3
with:
name: LDPartEditor_mac_arm
path: bin/macosx/setup
- name: Output artifact ID
run: echo 'Artifact ID is ${{ steps.artifact-upload-step3.outputs.artifact-id }}'
- name: Download artifact
run: gh api /repos/${{ github.repository }}/actions/artifacts/${{ steps.artifact-upload-step3.outputs.artifact-id }}/zip > LDPartEditor_mac_arm.zip
env:
GH_TOKEN: ${{ github.token }}
- name: Calculate SHA
run: shasum -a 256 LDPartEditor_mac_arm.zip > LDPartEditor_mac_arm_sha256_checksum.txt
- name: Archive checksum
uses: actions/upload-artifact@v4
with:
name: LDPartEditor_mac_arm_sha256_checksum
path: LDPartEditor_mac_arm_sha256_checksum.txt
build-macos:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Get dependent binaries from cache
uses: actions/cache@v4
with:
path: ./dependencies
key: swt-jface-lwjgl3zip-tools-macos-v5
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- name: Build with Ant
run: ant -noinput -buildfile build-macos.xml
- name: Publish Test Report
uses: mikepenz/action-junit-report@db71d41eb79864e25ab0337e395c352e84523afe #v4.3.1
with:
check_name: junit-macos
report_paths: '**/report/TEST-*.xml'
fail_on_failure: true
require_passed_tests: true
- name: Archive macosx installer for cocoa-x64
uses: actions/upload-artifact@v4
id: artifact-upload-step4
with:
name: LDPartEditor_mac_x64
path: bin/macosx/setup
- name: Output artifact ID
run: echo 'Artifact ID is ${{ steps.artifact-upload-step4.outputs.artifact-id }}'
- name: Download artifact
run: gh api /repos/${{ github.repository }}/actions/artifacts/${{ steps.artifact-upload-step4.outputs.artifact-id }}/zip > LDPartEditor_mac_x64.zip
env:
GH_TOKEN: ${{ github.token }}
- name: Calculate SHA
run: shasum -a 256 LDPartEditor_mac_x64.zip > LDPartEditor_mac_x64_sha256_checksum.txt
- name: Archive checksum
uses: actions/upload-artifact@v4
with:
name: LDPartEditor_mac_x64_sha256_checksum
path: LDPartEditor_mac_x64_sha256_checksum.txt