forked from RumbleDB/rumble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
46 lines (37 loc) · 819 Bytes
/
.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
image: marioarduini/rumble-source:2020-11-23
build-rumble:
stage: build
artifacts:
paths:
- target/
script:
- ant -buildfile build_antlr_parser.xml generate-parser -Dantlr.jar=lib/antlr-4.7-complete.jar
- mvn clean compile assembly:single
javaapi-test:
stage: test
script:
- mvn -Dtest=JavaAPITest test
frontend-test:
stage: test
script:
- mvn -Dtest=FrontendTests test
runtime-test:
stage: test
script:
- mvn -Dtest=RuntimeTests test
sparkruntime-test:
stage: test
script:
- mvn -Dtest=SparkRuntimeTests test
nativeflworruntime-test:
stage: test
script:
- mvn -Dtest=NativeFLWORRuntimeTests test
statictyping-test:
stage: test
script:
- mvn -Dtest=StaticTypeTests test
spotless-test:
stage: test
script:
- mvn spotless:check