forked from praxis-live/praxis-live
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 1 KB
/
test_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
name: Test Build
on:
push:
paths: '.github/workflows/*.yml'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout PraxisCORE
uses: actions/checkout@v4
with:
repository: ${{ github.repository_owner }}/praxiscore
path: praxiscore
- name: Checkout PraxisLIVE
uses: actions/checkout@v4
with:
repository: ${{ github.repository }}
path: praxislive
- name: Setup JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Build PraxisCORE
run: mvn -B -U -f praxiscore/ install
- name: Build PraxisLIVE
run: mvn -B -U -f praxislive/ verify
- name: Upload Dev build
uses: actions/upload-artifact@v4
with:
name: dev-build
path: praxislive/application/target/PraxisLIVE-*.zip
retention-days: 7
if-no-files-found: error