-
-
Notifications
You must be signed in to change notification settings - Fork 25
180 lines (179 loc) · 6.45 KB
/
ms-jwt.yaml
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
#
# Copyright 2018-2022 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
#
# https://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.
#
name: Microservices JWT
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-${{ github.event.inputs.jhiGenRepo }}-${{ github.event.inputs.jhiGenBranch }}
cancel-in-progress: true
on:
workflow_dispatch:
inputs:
jhiGenRepo:
description: 'JHipster repository url'
default: 'https://github.com/jhipster/generator-jhipster.git'
required: false
jhiGenBranch:
description: 'JHipster repository branch'
default: 'main'
required: false
schedule:
- cron: '0 5 * * *'
env:
JHI_SAMPLES: ${{ github.workspace }}/generator-jhipster/test-integration/daily-builds
jobs:
applications:
name: ${{ matrix.app-type }}
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ${{ github.workspace }}/app
timeout-minutes: 40
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
app-type:
- ms-ngx-gateway-eureka
- ms-micro-eureka
- ms-ngx-gateway-consul
- ms-micro-consul
- gradle-ms-ngx-gateway-eureka
- gradle-ms-micro-eureka
- gradle-ms-ngx-gateway-consul
- gradle-ms-micro-consul
include:
- app-type: ms-ngx-gateway-eureka
entity: sqllight
profile: prod
war: 0
e2e: 1
- app-type: ms-micro-eureka
entity: micro
profile: prod
war: 0
e2e: 0
- app-type: ms-ngx-gateway-consul
entity: sqllight
profile: prod
war: 0
e2e: 1
- app-type: ms-micro-consul
entity: micro
profile: prod
war: 0
e2e: 1
- app-type: gradle-ms-ngx-gateway-eureka
entity: sqllight
profile: prod
war: 0
e2e: 1
- app-type: gradle-ms-micro-eureka
entity: micro
profile: prod
war: 0
e2e: 0
- app-type: gradle-ms-ngx-gateway-consul
entity: sqllight
profile: prod
war: 0
e2e: 1
- app-type: gradle-ms-micro-consul
entity: micro
profile: prod
war: 0
e2e: 1
steps:
#----------------------------------------------------------------------
# Install all tools and check configuration
#----------------------------------------------------------------------
- name: 'SETUP: Checkout jhipster-daily-builds'
uses: actions/checkout@v3
with:
path: jhipster-daily-builds
- name: 'SETUP: Checkout generator-jhipster'
uses: actions/checkout@v3
with:
repository: 'jhipster/generator-jhipster'
path: generator-jhipster
# shows 5 commits at log
fetch-depth: 5
ref: main
- name: 'SETUP: environment'
id: setup
uses: ./generator-jhipster/.github/actions/setup
with:
entities-sample: ${{ matrix.entity }}
application-sample: ${{ matrix.app-type }}
application-environment: ${{ matrix.profile }}
application-packaging: ${{ (matrix.war == 1 && 'war') || 'jar' }}
generator-jhipster-repository: ${{ github.event.inputs.jhiGenRepo || 'https://github.com/jhipster/generator-jhipster.git' }}
generator-jhipster-branch: ${{ github.event.inputs.jhiGenBranch || 'local' }}
- uses: actions/setup-node@v3
with:
node-version: ${{ steps.setup.outputs.node-version }}
- name: Download latest chrome binary
run: |
sudo apt update
sudo apt install google-chrome-stable
- uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: ${{ steps.setup.outputs.java-version }}
- name: 'SETUP: load cache'
uses: actions/cache@v3
with:
path: |
~/.npm
~/.cache/Cypress/
~/.m2/repository
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-cache-${{ steps.setup.outputs.date }}-${{ hashFiles('pom.xml', '**/pom.xml') }}
restore-keys: |
${{ runner.os }}-cache-${{ steps.setup.outputs.date }}-
${{ runner.os }}-cache-${{ steps.setup.outputs.date }}
- name: 'TOOLS: configure tools installed by the system'
run: $JHI_SCRIPTS/03-system.sh
- name: 'TOOLS: configure git'
run: $JHI_SCRIPTS/04-git-config.sh
- name: 'Copy samples'
run: cp -R "$JHI_HOME/test-integration/samples/.jhipster" "$JHI_SAMPLES"
#----------------------------------------------------------------------
# Install JHipster and generate project+entities
#----------------------------------------------------------------------
- name: 'GENERATION: install JHipster'
run: $JHI_SCRIPTS/10-install-jhipster.sh
- name: 'GENERATION: config'
run: $JHI_SCRIPTS/11-generate-config.sh
- name: 'GENERATION: project'
run: $JHI_SCRIPTS/12-generate-project.sh
- name: 'GENERATION: jhipster info'
run: $JHI_SCRIPTS/14-jhipster-info.sh
#----------------------------------------------------------------------
# Launch tests
#----------------------------------------------------------------------
- name: 'TESTS: backend'
run: npm run ci:backend:test
- name: 'TESTS: frontend'
run: npm run ci:frontend:test --if-present
- name: 'TESTS: packaging'
run: npm run ci:e2e:package
- name: 'TESTS: Deploying with docker-compose file'
run: npm run ci:e2e:prepare
- name: 'TESTS: End-to-End (Docker-compose)'
run: npm run ci:e2e:run --if-present