-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (38 loc) · 1.39 KB
/
build.yml
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
# Workflow that creates artifacts of the latest dev versions.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Java CI
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-m2-${{ hashFiles('.github/workflows/**/*.*', '**/pom.xml', '**/META-INF/MANIFEST.MF', 'build/de.cau.cs.kieler.spviz.targetplatform/de.cau.cs.kieler.spviz.targetplatform.target') }}
- name: Build with Maven
run: mvn --batch-mode --update-snapshots -f build/pom.xml verify
- name: Archive P2 Repository
uses: actions/upload-artifact@v4
with:
name: SPViz P2 Repository
path: build/de.cau.cs.kieler.spviz.repository/target/repository/**/*
retention-days: 14
if-no-files-found: error
- name: Archive CLI
uses: actions/upload-artifact@v4
with:
name: SPViz CLI
path: cli/de.cau.cs.kieler.spviz.cli/target/spviz-cli.jar
retention-days: 14
if-no-files-found: error