-
Notifications
You must be signed in to change notification settings - Fork 82
/
.gitlab-ci.yml
112 lines (92 loc) · 2.21 KB
/
.gitlab-ci.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
image: marioarduini/rumble-source:2020-11-23
stages:
- build
- tests2
- tests3
Build:
stage: build
artifacts:
paths:
- target/
script:
- ant -buildfile build_antlr_parser.xml generate-parser -Dantlr.jar=lib/antlr-4.9.3-complete.jar
- mvn clean compile assembly:single
SparkRuntimeTest:
stage: tests2
script:
- mvn -Dtest=SparkRuntimeTests test
SparkRuntimeTestsNativeDeactivated:
stage: tests2
script:
- mvn -Dtest=SparkRuntimeTestsNativeDeactivated test
SparkRuntimeTestsDataFramesDeactivated:
stage: tests2
script:
- mvn -Dtest=SparkRuntimeTestsDataFramesDeactivated test
SparkRuntimeTestsParallelismDeactivated:
stage: tests2
script:
- mvn -Dtest=SparkRuntimeTestsParallelismDeactivated test
JavaAPITest:
stage: tests3
script:
- mvn -Dtest=JavaAPITest test
FrontendTests:
stage: tests3
script:
- mvn -Dtest=FrontendTests test
RuntimeTests:
stage: tests3
script:
- mvn -Dtest=RuntimeTests test
RuntimeTestsNoParallelism:
stage: tests3
script:
- mvn -Dtest=RuntimeTestsNoParallelism test
RuntimeTestsNoInlining:
stage: tests3
script:
- mvn -Dtest=RuntimeTestsNoInlining test
NativeFLWORRuntimeTests:
stage: tests3
script:
- mvn -Dtest=NativeFLWORRuntimeTests test
NativeFLWORRuntimeTestsNativeDeactivated:
stage: tests3
script:
- mvn -Dtest=NativeFLWORRuntimeTestsNativeDeactivated test
NativeFLWORRuntimeTestsDataFramesDeactivated:
stage: tests3
script:
- mvn -Dtest=NativeFLWORRuntimeTestsDataFramesDeactivated test
NativeFLWORRuntimeTestsParallelismDeactivated:
stage: tests3
script:
- mvn -Dtest=NativeFLWORRuntimeTestsParallelismDeactivated test
updatedeltaruntime-test:
stage: test
script:
- mvn -Dtest=DeltaUpdateRuntimeTests test
statictyping-test:
stage: test
script:
- mvn -Dtest=StaticTypeTests test
SpotlessTest:
stage: tests3
script:
- mvn spotless:check
MLTests:
stage: tests3
artifacts:
name: "ML Tests log"
paths:
- target/ml_test.log
when:
always
expire_in: 2 days
script:
- mvn -Dtest=MLTests test --log-file target/ml_test.log
MLTestsNativeDeactivated:
stage: tests3
script:
- mvn -Dtest=MLTestsNativeDeactivated test