Skip to content

Build Documentation & QA #89

Build Documentation & QA

Build Documentation & QA #89

Workflow file for this run

name: 'Build Documentation & QA'
on:
workflow_run:
workflows: ["master_build"]
branches: [ master ]
types:
- completed
env:
MAVEN_OPTS: -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
jobs:
build_site:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
name: Build Microservice Docs
services:
rabbitmq:
image: rabbitmq:3.8
env:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
ports:
- 5672:5672
postgres:
image: openwms/postgres-image:latest
env:
POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 21
uses: actions/setup-java@v1
with:
java-version: 21
- name: Cache SonarQube packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Install tools
run: |
sudo apt-get update
sudo apt-get install graphviz gsfonts graphviz-doc
git config --global user.email "[email protected]"
git config --global user.name "CI Server"
- name: Site
run: >
./mvnw post-integration-test site scm-publish:publish-scm
-DM2_REPO_DIR=/home/runner/.m2/repository
-DsurefireArgs=-Dspring.profiles.active=ASYNCHRONOUS,TEST,TESTPG
-Dargs=-Dspring.profiles.active=ASYNCHRONOUS,TEST,TESTPG
-Dspring.datasource.url=jdbc:postgresql://localhost:5432/testdb
-Dspring.rabbitmq.host=localhost
-DDB_HOST=localhost
-DDB_USERNAME=KARL
-DDB_PASSWORD=KARL
-Dscmuser=$PUSHKEY
-Dscmpublish.pubScmUrl=scm:git:https://openwms:[email protected]/openwms/org.openwms.wms.movements.lib.git
-DdeveloperConnectionUrl=scm:git:https://openwms:[email protected]/openwms/org.openwms.wms.movements.lib.git
-Dci.buildNumber=$GITHUB_RUN_NUMBER
-Pschemagen,release -B $MAVEN_OPTS
env:
PUSHKEY: ${{ secrets.GITHUB_TOKEN }}
- name: Sonar
run: >
./mvnw verify org.sonarsource.scanner.maven:sonar-maven-plugin:3.7.0.1746:sonar
-DsurefireArgs="-Dspring.profiles.active=ASYNCHRONOUS,TEST"
-Dspring.rabbitmq.host=localhost
-Dsonar.login=$SONAR_TOKEN
-DSONAR_TOKEN=$SONAR_TOKEN
-Dci.buildNumber=$GITHUB_RUN_NUMBER
-Pcoverage -B $MAVEN_OPTS
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}