forked from deltixlab/DFP
-
Notifications
You must be signed in to change notification settings - Fork 2
277 lines (265 loc) · 7.91 KB
/
Build.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
name: Build CI
on:
workflow_dispatch:
push:
branches-ignore: release
pull_request:
types: synchronize
branches-ignore: release
env:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
NATIVE_UTILS_LOG_LEVEL: "0"
jobs:
build-wrappers:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: build
run: |
./gradlew makeNativeWrappers
- uses: actions/upload-artifact@v3
with:
name: build-wrappers
path: |
./*java/dfp/build/generated/sources/nativeWrappers/com/epam/deltix/dfp*
./*java/dfp-math/build/generated/sources/nativeWrappers/com/epam/deltix/dfpmath*
./csharp/EPAM.Deltix.DFP/NativeImpl.cs
./csharp/EPAM.Deltix.DFP/Version.targets
./csharp/EPAM.Deltix.DFPMath/NativeMathImpl.cs
./csharp/EPAM.Deltix.DFPMath/Version.targets
./native/include*
retention-days: 7
build-native-linux:
runs-on: ubuntu-22.04
needs: [build-wrappers]
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Download build-wrappers artifacts
uses: actions/download-artifact@v3
with:
name: build-wrappers
- name: build
run: |
sudo apt update
sudo apt install -yqq g++-arm-linux-gnueabihf \
g++-aarch64-linux-gnu \
g++-i686-linux-gnu \
musl-tools
./gradlew makeNativeLinux
- uses: actions/upload-artifact@v3
with:
name: build-native-linux
path: |
./*native/install*
retention-days: 7
build-native-windows:
runs-on: windows-2019
needs: [build-wrappers]
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Download build-wrappers artifacts
uses: actions/download-artifact@v3
with:
name: build-wrappers
- name: Use MSBuild
uses: microsoft/setup-msbuild@v1.1
- name: build
run: |
./gradlew makeNativeWindows
- uses: actions/upload-artifact@v3
with:
name: build-native-windows
path: |
./*native/install*
retention-days: 7
build-native-macos:
runs-on: macos-12
needs: [build-wrappers]
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Download build-wrappers artifacts
uses: actions/download-artifact@v3
with:
name: build-wrappers
- name: build
run: |
./gradlew makeNativeDarwin
- uses: actions/upload-artifact@v3
with:
name: build-native-macos
path: |
./*native/install*
retention-days: 7
compress-native:
runs-on: ubuntu-22.04
needs: [build-wrappers, build-native-linux, build-native-windows, build-native-macos]
steps:
- uses: actions/checkout@v3
- name: Download build-wrappers artifacts
uses: actions/download-artifact@v3
with:
name: build-wrappers
- name: Download native-linux artifacts
uses: actions/download-artifact@v3
with:
name: build-native-linux
- name: Download native-windows artifacts
uses: actions/download-artifact@v3
with:
name: build-native-windows
- name: Download native-macos artifacts
uses: actions/download-artifact@v3
with:
name: build-native-macos
- name: compress
run: |
zstd --version
./gradlew nativeInstallToBin
- uses: actions/upload-artifact@v3
with:
name: compress-native
path: |
./gradle.properties
./*native/bin*
./*native/binmath*
./*java/dfp/build/generated/sources/nativeWrappers/com/epam/deltix/dfp*
./*java/dfp-math/build/generated/sources/nativeWrappers/com/epam/deltix/dfpmath*
./csharp/EPAM.Deltix.DFP/NativeImpl.cs
./csharp/EPAM.Deltix.DFP/Version.targets
./csharp/EPAM.Deltix.DFPMath/NativeMathImpl.cs
./csharp/EPAM.Deltix.DFPMath/Version.targets
./native/include*
retention-days: 7
build-java:
runs-on: ubuntu-22.04
needs: [compress-native]
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Download compress-native artifacts
uses: actions/download-artifact@v3
with:
name: compress-native
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '19'
- name: build
run: |
./gradlew jar
./gradlew javadocJar
./gradlew copyTestJars
- uses: actions/upload-artifact@v3
with:
name: java-jars
path: |
./*java/dfp/build/libs/*
./*java/dfp-math/build/libs/*
./*java/dfp/testLibs/*
./*java/dfp-math/testLibs/*
./*java/dfpNativeTests/testLibs/*
./*java/vtaTest/testLibs/*
retention-days: 7
build-dotnet:
runs-on: windows-2019
needs: [compress-native]
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Download compress-native artifacts
uses: actions/download-artifact@v3
with:
name: compress-native
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '3.1.x'
- name: build
run: |
cd csharp
./build -Target Build
- uses: actions/upload-artifact@v3
with:
name: dotnet-build
path: |
./*csharp/EPAM.Deltix.DFP/bin/Release/*
./*csharp/EPAM.Deltix.DFPMath/bin/Release/*
./*csharp/EPAM.Deltix.DFP.Demo/bin/Release/*
retention-days: 7
test-java:
runs-on: ${{ matrix.os }}
needs: [build-java]
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-22.04', 'windows-2019', 'macos-latest']
java: [ '8', '11', '19']
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Download java-jars artifacts
uses: actions/download-artifact@v3
with:
name: java-jars
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Show environment
run: |
./gradlew :java:systemInfo:runSystemInfo
- name: test
run: |
./gradlew runTestJars
test-dotnet:
runs-on: ${{ matrix.os }}
needs: [compress-native]
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-22.04', 'windows-2019', 'macos-latest']
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Download compress-native artifacts
uses: actions/download-artifact@v3
with:
name: compress-native
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '3.1.x'
- name: test windows
if: ${{ matrix.os == 'windows-2019' }}
run: |
cd csharp
./build --target=Run-Unit-Tests
- name: test nix
if: ${{ matrix.os == 'ubuntu-22.04' || matrix.os == 'macos-latest' }}
run: |
cd csharp
./build.sh --target=Run-Unit-Tests
- name: Upload test results on failure
uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
path: |
csharp/EPAM.Deltix.DFP/bin/*
csharp/EPAM.Deltix.DFPMath/bin/*
csharp/*.txt
csharp/*.xml
name: Dotnet-3.1-${{ matrix.os }}-TestReports