File tree Expand file tree Collapse file tree 1 file changed +33
-1
lines changed Expand file tree Collapse file tree 1 file changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Build
3
3
on : push
4
4
5
5
jobs :
6
- build :
6
+ ubuntu :
7
7
name : Ubuntu with Java 11
8
8
runs-on : ubuntu-latest
9
9
steps :
19
19
run : ./dev/before
20
20
- name : Build
21
21
run : ./dev/main
22
+ macos :
23
+ name : macOS with Java 11
24
+ runs-on : macos-latest
25
+ steps :
26
+ - name : Checkout master branch
27
+ uses : actions/checkout@v2
28
+ - name : Set up JDK 11
29
+ uses : actions/setup-java@v1
30
+ with :
31
+ java-version : 11
32
+ - name : Install pre-requisites
33
+ run : ./dev/before_install
34
+ - name : Before build actions
35
+ run : ./dev/before
36
+ - name : Build
37
+ run : ./dev/main
38
+ windows :
39
+ name : Windows with Java 11
40
+ runs-on : windows-latest
41
+ steps :
42
+ - name : Checkout master branch
43
+ uses : actions/checkout@v2
44
+ - name : Set up JDK 11
45
+ uses : actions/setup-java@v1
46
+ with :
47
+ java-version : 11
48
+ - name : Install pre-requisites
49
+ run : ./dev/before_install
50
+ - name : Before build actions
51
+ run : ./dev/before
52
+ - name : Build
53
+ run : ./dev/main
You can’t perform that action at this time.
0 commit comments