Skip to content

Build Documentation & QA #19

Build Documentation & QA

Build Documentation & QA #19

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 "[email protected]"
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:[email protected]/openwms/org.openwms.wms.receiving.git
-DdeveloperConnectionUrl=scm:git:https://openwms:[email protected]/openwms/org.openwms.wms.receiving.git
-Dci.buildNumber=$GITHUB_RUN_NUMBER
-Prelease -B $MAVEN_OPTS
env:
PUSHKEY: ${{ secrets.PUSHKEY }} # Does not work with GITHUB_TOKEN (403)