-
Notifications
You must be signed in to change notification settings - Fork 8
59 lines (57 loc) · 1.39 KB
/
build-plugin.yaml
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
# Builds and pushes docker images on main and tags
name: Test GeoSever plugin
on:
push:
branches:
- '**'
pull_request:
branches: [ main ]
jobs:
test-gs-dev-plugin:
name: GeoServer dev version
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
java-version: [ 11, 17, 21 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
cache: 'maven'
- run: |
make plugin-test-gs-dev
test-gs-stable-plugin:
name: GeoServer stable version
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
java-version: [ 11, 17, 21 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
cache: 'maven'
- run: |
make plugin-test-gs-stable
test-gs-maintenance-plugin:
name: GeoServer maintenance version
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
java-version: [ 11, 17, 21 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
cache: 'maven'
- run: |
make plugin-test-gs-maintenance