summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: 7cbf6439ff3abccef33b2d4be1d0e408347ec5cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Build and Test

on:
  push:
    branches: [ master, github-ci ]
    tags-ignore:
    - 'v*'
  pull_request:
    branches: [ master ]

jobs:
  build:

    runs-on: ubuntu-18.04

    steps:
    - uses: actions/checkout@v2
    - name: apt
      run: sudo apt-get install gcc-6 autoconf bison gettext autopoint help2man lzip texinfo texlive
    - name: autogen
      run: ./autogen.sh
    - name: configure
      run: ./configure
    - name: make
      run: make
    - name: make check
      run: make check
    - name: make distcheck
      run: make distcheck