forked from jhipster/generator-jhipster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
104 lines (99 loc) · 3.92 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
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
#
# Copyright 2013-2019 the original author or authors from the JHipster project.
#
# This file is part of the JHipster project, see https://www.jhipster.tech/
# for more information.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
dist: bionic
services:
- docker
- xvfb
language: node_js
node_js:
- '10.16.3'
cache:
directories:
- $HOME/.m2
- $HOME/.gradle
env:
global:
- JHI_PROFILE=dev
- JHI_RUN_APP=1
- JHI_PROTRACTOR=0
- JHI_JDK=11
# if JHI_LIB_BRANCH value is release, use the release from Maven
- JHI_LIB_REPO=https://github.com/jhipster/jhipster.git
- JHI_LIB_BRANCH=release
# if JHI_GEN_BRANCH value is release, use the release from NPM
- JHI_GEN_REPO=https://github.com/jhipster/generator-jhipster.git
- JHI_GEN_BRANCH=master
# specific config
- SPRING_OUTPUT_ANSI_ENABLED=ALWAYS
- SPRING_JPA_SHOW_SQL=false
- JHI_DISABLE_WEBPACK_LOGS=true
- JHI_E2E_HEADLESS=true
- JHI_SCRIPTS=$TRAVIS_BUILD_DIR/test-integration/scripts
- NG_CLI_ANALYTICS="false"
matrix:
- JHI_APP=ngx-default JHI_PROFILE=prod JHI_PROTRACTOR=1 JHI_ENTITY=sql JHI_SONAR=1
- JHI_APP=ngx-psql-es-noi18n-mapsid JHI_PROFILE=prod JHI_PROTRACTOR=1 JHI_ENTITY=sqlfull
- JHI_APP=ngx-gradle-fr JHI_PROFILE=prod JHI_PROTRACTOR=1 JHI_ENTITY=sql JHI_WAR=1
- JHI_APP=ms-ngx-gateway-eureka JHI_ENTITY=sql JHI_WAR=1
- JHI_APP=ms-micro-eureka JHI_ENTITY=micro JHI_WAR=1
- JHI_APP=ms-micro-consul JHI_ENTITY=micro
#----------------------------------------------------------------------
# Install all tools and check configuration
#----------------------------------------------------------------------
before_install:
- sudo apt-get install -y google-chrome-stable
- java -version
- export TZ=Australia/Canberra
- date
# Install Yarn
- npm install -g yarn
- $JHI_SCRIPTS/04-git-config.sh
#----------------------------------------------------------------------
# Install JHipster and generate project+entities
#----------------------------------------------------------------------
install:
- $JHI_SCRIPTS/10-install-jhipster.sh
- $JHI_SCRIPTS/11-generate-entities.sh
- $JHI_SCRIPTS/12-generate-project.sh
- $JHI_SCRIPTS/13-replace-version-generated-project.sh
- $JHI_SCRIPTS/14-jhipster-info.sh
#----------------------------------------------------------------------
# Launch tests
#----------------------------------------------------------------------
script:
- $JHI_SCRIPTS/20-docker-compose.sh
- $JHI_SCRIPTS/21-tests-backend.sh
- $JHI_SCRIPTS/22-tests-frontend.sh
- $JHI_SCRIPTS/23-package.sh
- $JHI_SCRIPTS/24-tests-e2e.sh
- $JHI_SCRIPTS/25-sonar-analyze.sh
#----------------------------------------------------------------------
# Cache
#----------------------------------------------------------------------
before_cache:
- rm -rf $HOME/.m2/repository/io/github/jhipster/jhipster-framework/
- rm -rf $HOME/.m2/repository/io/github/jhipster/jhipster-dependencies/
- rm -rf $HOME/.m2/repository/io/github/jhipster/jhipster-parent/
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/479b810ad42c816679fb
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false