File tree 2 files changed +34
-37
lines changed
2 files changed +34
-37
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will build the project on any major PR.
2
+
3
+ name : Build Open-O
4
+
5
+ on :
6
+ pull_request :
7
+ branches :
8
+ - main
9
+ - develop/alpaca
10
+ - develop/bullfrog
11
+ - develop/coyote
12
+ - develop/dolphin
13
+
14
+ jobs :
15
+ build :
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - name : Checkout code
19
+ uses : actions/checkout@v3
20
+
21
+ - name : Build Docker containers
22
+ uses :
hoverkraft-tech/[email protected]
23
+ with :
24
+ compose-file : " .devcontainer/docker-compose.yml"
25
+
26
+ - name : Generate make file
27
+ run : docker exec devcontainer-open-o-1 .devcontainer/development/scripts/make lock
28
+
29
+ - name : Build project
30
+ run : docker exec devcontainer-open-o-1 .devcontainer/development/scripts/make install
31
+
32
+ - name : Build JSP files
33
+ run : docker exec devcontainer-open-o-1 mvn package -Pjspc
34
+
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments