File tree 1 file changed +27
-0
lines changed
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build
2
+ on : [push]
3
+ jobs :
4
+ build-mac :
5
+ runs-on : macos-latest
6
+ steps :
7
+ - run : echo "This job is now running on a ${{ runner.os }} server hosted by GitHub!"
8
+ - run : echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
9
+ - name : Check out repository code
10
+ uses : actions/checkout@v2
11
+ - run : brew install automake
12
+ - run : autoreconf -i
13
+ - run : ./configure --enable-warning-as-error
14
+ - run : make all
15
+ - run : make dist
16
+ build-linux :
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - run : echo "This job is now running on a ${{ runner.os }} server hosted by GitHub!"
20
+ - run : echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
21
+ - name : Check out repository code
22
+ uses : actions/checkout@v2
23
+ - run : autoreconf -i
24
+ - run : ./configure --enable-warning-as-error
25
+ - run : make all
26
+ - run : make dist
27
+
You can’t perform that action at this time.
0 commit comments