Skip to content

109 add support of medusa format csv files (#112) #215

109 add support of medusa format csv files (#112)

109 add support of medusa format csv files (#112) #215

Workflow file for this run

name: GeoHammer build for Ubuntu Linux
on: [push, workflow_dispatch]
jobs:
GeoHammer-Linux-Build:
runs-on: ubuntu-22.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'liberica'
java-package: 'jdk+fx'
architecture: 'x64'
- name: Cache local Maven repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn --batch-mode install -P linux-build
- name: Staging artifacts
run: mkdir staging && cp target/*.zip staging
- name: Store artifacts
uses: actions/upload-artifact@v4
with:
name: Linux-Package
path: staging
retention-days: 5