Skip to content

[pull] main from geoserver:main #184

[pull] main from geoserver:main

[pull] main from geoserver:main #184

Workflow file for this run

name: QA GitHub CI
on: [pull_request]
env:
MAVEN_OPTS: -Dmaven.wagon.httpconnectionManager.ttlSeconds=25 -Dmaven.wagon.http.retryHandler.count=3 -Xmx768m -Dorg.slf4j.simpleLogger.showDateTime=true -Dorg.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss,SSS
jobs:
QA:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
# 500 commits, set to 0 to get all
fetch-depth: 500
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'temurin'
- name: Set up Maven
uses: stCarolas/setup-maven@v4
with:
maven-version: 3.8.4
- name: Maven repository caching
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: gs-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
gs-${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B -U -T3 -fae -Dspotless.action=check -Dpom.fmt.action=verify -Dqa -DskipTests=true -Prelease -f src/pom.xml clean install
- name: Build community modules
run: mvn -nsu -B -U -T4 -fae -Dspotless.action=check -Dpom.fmt.action=verify -DskipTests -Prelease -PcommunityRelease -f src/community/pom.xml clean install
- name: Remove SNAPSHOT jars from repository
run: |
find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}