-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
50 lines (43 loc) · 1.24 KB
/
.travis.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
language: java
cache:
timeout: 1000
directories:
- $HOME/.m2
jdk:
- openjdk8
- openjdk11
node_js:
- "8.11.4"
os:
- linux
env:
- TEST_CASE="RepositoryApplication"
- TEST_CASE="RestApplication"
- TEST_CASE="AngularApplication"
- TEST_CASE="AngularMicroService"
- TEST_CASE="ReactJSApplication"
- TEST_CASE="ReactJSMicroService"
before_install:
- npm install -g npm
- curl -o- -L https://yarnpkg.com/install.sh | bash -s
- export PATH=$HOME/.yarn/bin:$PATH
- yarn -v
- export M2_HOME=/usr/local/maven-3.6.0
- git clone https://github.com/jeddict/netbeans-modeler.git ~/builds/netbeans-modeler
- pushd ~/builds/netbeans-modeler
- mvn clean install -q
- popd
- git clone https://github.com/jeddict/jeddict.git ~/builds/jeddict
- pushd ~/builds/jeddict
- mvn clean install -DskipTests -q
- popd
- git clone https://github.com/jeddict/jeddict-extensions.git ~/builds/jeddict-extensions
- pushd ~/builds/jeddict-extensions
- mvn clean install -q
- popd
- git clone https://github.com/jeddict/hipee.git ~/builds/hipee
- pushd ~/builds/hipee
- mvn clean install -q
- popd
script:
- mvn test -B -Dtestcase=${TEST_CASE}