[GEOT-7668]: PROJ Citation and PROJ Formatter #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ElasticSearch integration tests | |
on: [pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: 'temurin' | |
- uses: actions/checkout@v4 | |
- name: Maven repository caching | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: gt-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
gt-maven- | |
- name: Build GeoTools dependent modules (no tests, prepare fresh artifacts) | |
run: mvn -B clean install -T2 -Dall --file pom.xml -DskipTests -pl modules/unsupported/elasticsearch -am -Dspotless.apply.skip=true | |
- name: Build ElasticSearch module with online tests, using the OSS version | |
run: | | |
mvn -B clean install --file modules/unsupported/elasticsearch/pom.xml -Ponline -nsu -Dspotless.apply.skip=true | |
- name: Build ElasticSearch module with online tests, using the non OSS version | |
run: | | |
mvn -B clean install --file modules/unsupported/elasticsearch/pom.xml -Ponline -nsu -Delastic.test.image=docker.elastic.co/elasticsearch/elasticsearch -Delastic.test.version=7.15.2 -Dspotless.apply.skip=true | |
- name: Remove SNAPSHOT jars from repository | |
run: | | |
find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {} |