Skip to content

Official Windows

Official Windows #1056

Workflow file for this run

#
# 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: 'https://github.com/jhipster/generator-jhipster.git'
required: false
jhiGenBranch:
description: 'JHipster repository branch'
default: 'main'
required: false
schedule:
- cron: '30 8 * * *'
env:
JHI_SAMPLES: ${{ github.workspace }}/jhipster-daily-builds/test-integration/samples
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@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 }}
- uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: ${{ steps.setup.outputs.java-version }}
- name: 'TOOLS: configure git'
run: $JHI_SCRIPTS/04-git-config.sh
#----------------------------------------------------------------------
# Install JHipster and generate project+entities
#----------------------------------------------------------------------
- name: 'GENERATION: install JHipster'
run: $JHI_SCRIPTS/10-install-jhipster.sh
env:
JHI_INSTALL_GLOBALLY: 'true'
- name: 'GENERATION: config'
run: $JHI_SCRIPTS/11-generate-config.sh
working-directory: ${{ github.workspace }}/
- name: 'GENERATION: force npm to use bash'
run: |
echo "script-shell=bash" >.npmrc
cat .npmrc
- name: 'GENERATION: project'
run: $JHI_SCRIPTS/12-generate-project.sh
- name: 'GENERATION: jhipster info'
run: $JHI_SCRIPTS/14-jhipster-info.sh
#----------------------------------------------------------------------
# Bugs fix
#----------------------------------------------------------------------
- name: 'BUGS-FIX: no memory limit for Elastichsearch'
run: $JHI_SCRIPTS/20-no-memory-limit-elasticsearch.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