Skip to content

Commit a18b1c9

Browse files
committed
Preliminary github actions support
1 parent d65acee commit a18b1c9

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+

0 commit comments

Comments
 (0)