File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 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 : autoreconf -i
12
+ - run : ./configure --enable-warning-as-error
13
+ - run : make all
14
+ - run : make dist
15
+ build-linux :
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - run : echo "This job is now running on a ${{ runner.os }} server hosted by GitHub!"
19
+ - run : echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
20
+ - name : Check out repository code
21
+ uses : actions/checkout@v2
22
+ - run : brew install automake
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