-
Notifications
You must be signed in to change notification settings - Fork 79
53 lines (46 loc) · 1.17 KB
/
pull-request.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
# Triggers the workflow on pull request events to the main branch
name: Pull Request on Main Branch
on:
pull_request:
branches:
- main
- "release/**"
paths:
- ".github/workflows/pull-request.yaml"
- ".github/workflows/build-and-push.yaml"
- "pom.xml"
- "Makefile"
- "config"
- "src/**"
jobs:
build:
name: Build and Test Pull Request
if: github.repository == 'geoserver/geoserver-cloud'
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Validate source code formatting
run: make lint
- name: Build without tests
run: |
make install
- name: Test
run: |
make test
- name: Build images
run: |
make build-image
- name: Remove project jars from cached repository
run: |
rm -rf ~/.m2/repository/org/geoserver
find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}