-
Notifications
You must be signed in to change notification settings - Fork 8
64 lines (48 loc) · 1.41 KB
/
persist.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Result-Dist Persist Artifact Workflow
on: [workflow_dispatch]
jobs:
distributor_build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Distributor Build
uses: ballerina-platform/ballerina-action@1.2.4
with:
args:
build --sourceroot=./distributor -a --skip-tests
- name: Upload JAR
uses: actions/upload-artifact@v2
with:
name: distributor.jar
path: ./distributor/target/bin/
subscriber_build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Subscriber Build
uses: ballerina-platform/ballerina-action@1.2.4
with:
args:
build --sourceroot=./subscriber -a
- name: Upload JAR
uses: actions/upload-artifact@v2
with:
name: subscriber.jar
path: ./subscriber/target/bin/
testdriver_build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Test Driver Build
uses: ballerina-platform/ballerina-action@1.2.4
with:
args:
build --sourceroot=./testdriver -a
- name: Upload JAR
uses: actions/upload-artifact@v2
with:
name: testdriver.jar
path: ./testdriver/target/bin/