File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build OpenIntegrationEngine
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - main
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+
18
+ - name : Set up JDK
19
+ uses : actions/setup-java@v4
20
+ with :
21
+ java-version : ' 8'
22
+ java-package : ' jdk+fx'
23
+ distribution : ' zulu'
24
+
25
+ - name : Build OIE (signed)
26
+ if : github.ref == 'refs/heads/main'
27
+ working-directory : server
28
+ run : ant -f mirth-build.xml
29
+
30
+ - name : Build OIE (unsigned)
31
+ if : github.ref != 'refs/heads/main'
32
+ working-directory : server
33
+ run : ant -f mirth-build.xml -DdisableSigning=true
34
+
35
+ - name : Package distribution
36
+ run : tar czf openintegrationengine.tar.gz -C server/ setup --transform 's|^setup|openintegrationengine/|'
37
+
38
+ - name : Create artifact
39
+ uses : actions/upload-artifact@v4
40
+ with :
41
+ name : oie-build
42
+ path : openintegrationengine.tar.gz
You can’t perform that action at this time.
0 commit comments