-
-
Notifications
You must be signed in to change notification settings - Fork 26
133 lines (132 loc) · 4.75 KB
/
windows.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
#
# 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: Official Windows
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: 'jhipster/generator-jhipster'
required: false
jhiGenBranch:
description: 'JHipster repository branch'
default: 'main'
required: false
schedule:
- cron: '0 9 * * *'
jobs:
applications:
name: ${{ matrix.app-type }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
working-directory: ${{ github.workspace }}/app
timeout-minutes: 40
strategy:
fail-fast: false
matrix:
os: [windows-latest]
app-type:
- ng-default
# Elasticsearch requires docker for tests
# - ng-mysql-es-noi18n-mapsid
- ng-gradle-fr
- ng-mariadb-oauth2-sass-infinispan
- ms-ngx-gateway-eureka
- ms-micro-eureka
# - ngx-mongodb-kafka-cucumber
- vue-default
- react-default
include:
- app-type: ng-default
profile: dev
e2e: 1
entity: sql
# - app-type: ng-mysql-es-noi18n-mapsid
# profile: prod
# e2e: 1
# entity: sql
- app-type: ng-gradle-fr
profile: dev
e2e: 1
entity: sql
- app-type: ng-mariadb-oauth2-sass-infinispan
profile: dev
e2e: 1
entity: sql
- app-type: ms-ngx-gateway-eureka
profile: dev
entity: sqllight
- app-type: ms-micro-eureka
profile: dev
entity: micro
# - app-type: ng-mongodb-kafka-cucumber
# profile: prod
# entity: mongodb
- app-type: vue-default
entity: sql
profile: dev
e2e: 1
- app-type: react-default
entity: sql
profile: dev
e2e: 1
steps:
#----------------------------------------------------------------------
# Install all tools and check configuration
#----------------------------------------------------------------------
- name: 'SETUP: Checkout jhipster-daily-builds'
uses: actions/checkout@v4
with:
path: jhipster-daily-builds
- name: 'SETUP: Checkout generator-jhipster'
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.jhiGenRepo || 'jhipster/generator-jhipster' }}
path: generator-jhipster
ref: ${{ github.event.inputs.jhiGenBranch || 'main' }}
- uses: jhipster/actions/setup-runner@v0
with:
node-version: 20
java-version: 17
maven-cache: true
gradle-cache: true
binary-dir: ${{ github.workspace }}/generator-jhipster/bin
#----------------------------------------------------------------------
# Install JHipster and generate project+entities
#----------------------------------------------------------------------
- run: npm ci --ignore-scripts
working-directory: ${{ github.workspace }}/generator-jhipster
- uses: jhipster/actions/build-jhipster-bom@v0
with:
jhipster-bom-ref: main
- run: jhipster.cjs generate-sample samples/${{ matrix.app-type }} --entities-sample ${{ matrix.entity }} --default-environment ${{ matrix.profile || 'prod' }} --sample-yorc-folder --skip-jhipster-dependencies --skip-checks --no-insight
env:
JHIPSTER_DEPENDENCIES_VERSION: 0.0.0-CICD
- run: npm config -L project set script-shell=bash
#----------------------------------------------------------------------
# Launch tests
#----------------------------------------------------------------------
- run: npm run ci:backend:test
- run: npm run ci:frontend:test --if-present
- run: npm run ci:e2e:package