Skip to content

Initial pgsql catalog/config backend project structure #24

Initial pgsql catalog/config backend project structure

Initial pgsql catalog/config backend project structure #24

Workflow file for this run

# Builds and pushes docker images on main and tags
name: Build on any branch
on:
push:
branches:
- '**'
- "!main"
paths:
- "Makefile"
- "pom.xml"
- ".github/workflows/build.yaml"
- "geoserver_submodule/**"
- "src/**"
jobs:
build:
name: Build
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: '17'
cache: 'maven'
- name: Validate source code formatting
run: make lint
- name: Build customized GeoServer version
run: |
make deps
- name: Build and test
run: |
make install test
- name: Build docker images
run: |
make build-image
- name: Remove project jars from cached repository
run: |
rm -rf .m2/repository/org/geoserver