forked from geotools/geotools
-
Notifications
You must be signed in to change notification settings - Fork 1
78 lines (72 loc) · 2.6 KB
/
assembly.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: Assembly bundle and test
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
MAVEN_OPTS: -Dmaven.wagon.httpconnectionManager.ttlSeconds=25 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.defaultLogLevel=WARN
jobs:
build:
runs-on: [ubuntu-20.04]
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
- name: Maven repository caching
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: gt-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
gt-maven-
- name: Setup python for docs
uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: 'pip' # caching pip dependencies from requirements.txt below
- name: Setup python pip requirements for building docs
working-directory: docs
run: |
pip install -r requirements.txt
- name: Disable checksum offloading
# See: https://github.com/actions/virtual-environments/issues/1187#issuecomment-686735760
run: sudo ethtool -K eth0 tx off rx off
- name: Build with Maven
run: |
mvn -B clean install -DskipTests -Dall -T2 --file pom.xml
- name: Javadoc build
run: |
mvn -B -DskipTests -Dfmt.skip=true javadoc:aggregate --file modules/pom.xml
- name: Assemble downloads
run: |
mvn -B -DskipTests assembly:single -file release/pom.xml
- name: Test bin download run and compile
shell: bash
working-directory: release/target
run: |
echo "List assemblies:"
ls geotools-*.zip
echo "Unzip bin assembly for testing"
unzip -q `ls geotools-*bin.zip` -d bin-download
cd bin-download
cd `ls -d geotools-*/`
echo "Running GeoTools.main()..."
java -cp "lib/*" org.geotools.util.factory.GeoTools
echo "Compiling Quickstart.java"
mkdir bin
javac -cp "lib/*" -d bin src/org/geotools/tutorial/quickstart/Quickstart.java
ls -R bin | grep Quickstart
- name: Test user guide download
shell: bash
working-directory: release/target
run: |
echo "Unzip bin assembly for testing"
unzip -q `ls geotools-*userguide.zip` -d userguide-download
cd userguide-download
cd `ls -d geotools-*/`
- name: Remove SNAPSHOT jars from repository
run: |
find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}