Skip to content

Commit 2493b84

Browse files
committed
#11 Add GHA workflow
Signed-off-by: Kaur Palang <kaur.palang@brightcodecompany.com>
1 parent 1ecd2d3 commit 2493b84

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/build.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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: '17'
22+
java-package: 'jdk+fx'
23+
distribution: 'zulu'
24+
25+
- name: Build OIE
26+
working-directory: server
27+
run: ant -f mirth-build.xml -Dversion=10.10.10.dev

0 commit comments

Comments
 (0)