-
Notifications
You must be signed in to change notification settings - Fork 122
49 lines (38 loc) · 1.24 KB
/
subflow-native.yaml
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
43
44
45
46
47
48
49
name: subflow-native
on:
workflow_call:
jobs:
macos:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Build and Compile
run: |
./gradlew --parallel compileJava
rm -rf org.alloytools.pardinus.native/native-code/native
make -C org.alloytools.pardinus.native/native-code clean darwin copy
- uses: actions/upload-artifact@v4
with:
name: native-darwin
path: org.alloytools.pardinus.native/native-code/native
linux-windows:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Build and Compile
run: |
./gradlew --parallel compileJava
rm -rf org.alloytools.pardinus.native/native-code/native
make -C org.alloytools.pardinus.native/native-code clean linux windows copy
- uses: actions/upload-artifact@v4
with:
name: native-linux-windows
path: org.alloytools.pardinus.native/native-code/native