Skip to content

[GEOS-11351] Exact term search in the pages' filters #995

[GEOS-11351] Exact term search in the pages' filters

[GEOS-11351] Exact term search in the pages' filters #995

Workflow file for this run

name: Linux JDK GitHub CI
on:
pull_request:
paths-ignore:
- '**/src/main/resources/GeoServerApplication_*.properties'
- '!**/src/main/resources/GeoServerApplication_fr.properties'
env:
MAVEN_OPTS: -Xmx1024m -Dmaven.wagon.httpconnectionManager.ttlSeconds=25 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.showDateTime=true -Dorg.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss,SSS -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -Dspotless.apply.skip=true
jobs:
build:
strategy:
fail-fast: false
matrix:
jdk: [ 11, 17, 21 ]
dist: [ 'temurin' ]
os: [ 'ubuntu-20.04' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
# 500 commits, set to 0 to get all
fetch-depth: 500
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.jdk }}
distribution: ${{ matrix.dist }}
- name: Set up Maven
uses: stCarolas/setup-maven@v4.5
with:
maven-version: 3.9.5
- name: Maven repository caching
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: gs-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
gs-${{ runner.os }}-maven-
- name: Build with Maven
run: |
mvn --version
mvn -B -ntp -U -T3 -fae -Prelease -f src/pom.xml clean install
- name: Build community modules without tests
run: |
mvn -B -ntp -nsu -U -T4 -fae -DskipTests -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 {}