Skip to content

GEOMESA-3295 Partitioned PostGIS - default to using prepared statemen… #269

GEOMESA-3295 Partitioned PostGIS - default to using prepared statemen…

GEOMESA-3295 Partitioned PostGIS - default to using prepared statemen… #269

name: build-and-test-2.13
on:
push:
pull_request:
permissions: # added using https://github.com/step-security/secure-repo
contents: read
env:
MAVEN_CLI_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false --batch-mode
MAVEN_TEST_OPTS: -Dtest.fork.count=1
jobs:
build-scala:
runs-on: ubuntu-latest
# avoid duplicate jobs on PRs from the main repo
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
- uses: actions/setup-java@3f07048e3d294f56e9b90ac5ea2c6f74e9ad0f98 # v3.10.0
with:
distribution: 'temurin'
java-version: '8'
cache: 'maven'
- name: Set Scala version
run: ./build/change-scala-version.sh 2.13
- name: Build with Maven
run: ./build/mvn clean install $MAVEN_CLI_OPTS -DskipTests -T4
- name: Unit tests
id: test
run: mvn surefire:test $MAVEN_CLI_OPTS $MAVEN_TEST_OPTS -o
continue-on-error: true
- name: Unit tests (retry)
id: test-retry
if: steps.test.outcome=='failure'
run: mvn surefire:test $MAVEN_CLI_OPTS $MAVEN_TEST_OPTS -o
- name: HBase 1.4 unit tests
id: hbase-test
run: mvn surefire:test $MAVEN_CLI_OPTS $MAVEN_TEST_OPTS -o -pl geomesa-hbase/geomesa-hbase-datastore -Phbase1
continue-on-error: true
- name: HBase 1.4 unit tests (retry)
id: hbase-test-retry
if: steps.hbase-test.outcome=='failure'
run: mvn surefire:test $MAVEN_CLI_OPTS $MAVEN_TEST_OPTS -o -pl geomesa-hbase/geomesa-hbase-datastore -Phbase1
- name: Integration Tests
run: mvn failsafe:integration-test failsafe:verify $MAVEN_CLI_OPTS $MAVEN_TEST_OPTS
- name: Remove geomesa artifacts
if: success() || failure()
run: rm -rf ~/.m2/repository/org/locationtech/geomesa