forked from geotools/geotools
-
Notifications
You must be signed in to change notification settings - Fork 4
38 lines (35 loc) · 1.21 KB
/
mssql_online.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: MS SQL Server online tests
on: [pull_request]
jobs:
build:
name: MS SQL ${{ matrix.mssql }} online test
runs-on: [ubuntu-latest]
strategy:
matrix:
mssql: [2019-latest]
java: [11]
steps:
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- uses: actions/checkout@v2
- name: Maven repository caching
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: gt-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
gt-maven-
- name: Setup test environment for MS SQL ${{ matrix.mssql }}
run: |
./build/ci/mssql/start-mssql.sh ${{ matrix.mssql }}
./build/ci/mssql/setup-mssql.sh
- name: Build GeoTools dependent modules (no tests)
run: mvn -B clean install -T2 -Dall -pl :gt-jdbc-sqlserver -DskipTests -Dfmt.skip=true -am
- name: Test MS SQL Server data store
run: mvn -B clean install -T2 -Dall -pl :gt-jdbc-sqlserver -Ponline -Dfmt.skip=true
- name: Remove SNAPSHOT jars from repository
run: |
find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}