Skip to content

Commit

Permalink
github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cmangeat committed Oct 24, 2024
1 parent 7d93974 commit 46bb0b1
Showing 1 changed file with 18 additions and 29 deletions.
47 changes: 18 additions & 29 deletions .github/workflows/geonetwork-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
push:
branches:
- geocat_v4.2.3_report_custom*
- war-overlay

jobs:
build:
Expand All @@ -12,44 +12,33 @@ jobs:
steps:

- name: "Checking out"
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive

- name: "Setting up JDK 1.8"
uses: actions/setup-java@v1
- name: "Setup java JDK"
uses: actions/setup-java@v4.2.1
with:
java-version: 1.8

- name: "Cache Maven packages"
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2

- name: "Update maven dependencies"
run: mvn -Pdocker de.qaware.maven:go-offline-maven-plugin:resolve-dependencies

- name: Increase system limits
run: sudo sysctl -w vm.max_map_count=262144

- name: run tests
run: |
mvn resources:resources@copy-index-schema-to-source -f web
mvn clean verify -Pit
- name: "Installing"
run: mvn -B clean -DskipTests install -Ddb.username=db_username -Ddb.name=db_name -Ddb.type=postgres-postgis -Ddb.host=db_host -Ddb.password=db_password -Ddb.pool.maxActive=50 -Ddb.port=5432
java-version: 11
distribution: temurin
java-package: jdk
cache: maven

- name: "Setting image tag"
id: version
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)

- name: "Building docker image"
run: mvn -pl web -Pdocker docker:build -DdockerImageName=docker.pkg.github.com/geoadmin/geocat/geocat:${{ steps.version.outputs.VERSION }}-${{ github.run_number }}
- name: "Build docker container"
run: |
mvn clean install -DskipTests -Denforcer.skip -pl core-geonentwork
mvn install:install-file -Dfile=core-geonetwork/web/target/geonetwork.war -DgroupId=org.geonetwork-opensource -DartifactId=web-app -Dversion=4.4.6-0 -Dpackaging=war
mvn clean install -DskipTests -Denforcer.skip -pl web
mvn clean install -DskipTests -Denforcer.skip -pl release
cd release/target/docker/
docker build . -t docker.pkg.github.com/geoadmin/geocat/gn-with-swiss-overlay:${{ steps.version.outputs.VERSION }}-${{ github.run_number }}
- name: "Login to docker.pkg.github.com"
run: docker login -u $GITHUB_ACTOR -p ${{ secrets.GITHUB_TOKEN }} docker.pkg.github.com

- name: "Push to GitHub Packages"
run: docker push docker.pkg.github.com/geoadmin/geocat/geocat:${{ steps.version.outputs.VERSION }}-${{ github.run_number }}
- name: "Push to github packages"
run: docker push docker.pkg.github.com/geoadmin/geocat/gn-with-swiss-overlay:${{ steps.version.outputs.VERSION }}-${{ github.run_number }}

0 comments on commit 46bb0b1

Please sign in to comment.