Skip to content

Build Documentation & QA #32

Build Documentation & QA

Build Documentation & QA #32

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
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 "ci@example.com"
git config --global user.name "CI Server"
- name: Site
run: >
./mvnw post-integration-test site scm-publish:publish-scm
-DsurefireArgs=-Dspring.profiles.active=ASYNCHRONOUS,TEST
-Dargs=-Dspring.profiles.active=ASYNCHRONOUS,TEST
-Dspring.rabbitmq.host=localhost
-Dscmuser=$PUSHKEY
-Dscmpublish.pubScmUrl=scm:git:https://openwms:$PUSHKEY@github.com/openwms/org.openwms.common.comm.git
-DdeveloperConnectionUrl=scm:git:https://openwms:$PUSHKEY@github.com/openwms/org.openwms.common.comm.git
-Dci.buildNumber=$GITHUB_RUN_NUMBER
-Prelease,coverage -B $MAVEN_OPTS
env:
PUSHKEY: ${{ secrets.GITHUB_TOKEN }}
- name: Sonar
run: >
./mvnw clean 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 }}