From a0c76652f7bf3221f2bc5a15137aedfe2c278969 Mon Sep 17 00:00:00 2001 From: Joseph Langley Date: Sat, 20 Feb 2021 12:22:35 -0500 Subject: chore(gh-actions): Build and test on GitHub Actions CI platform. Use ubuntu-18.04. --- .github/workflows/build.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..1bc2d2b --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,29 @@ +name: Build and Test + +on: + push: + branches: [ master, gh-actions ] + 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 -- cgit v1.2.1