summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Langley <mightyjo@gmail.com>2021-02-20 12:22:35 -0500
committerJoseph Langley <mightyjo@gmail.com>2022-05-11 14:47:30 -0400
commita0c76652f7bf3221f2bc5a15137aedfe2c278969 (patch)
treea6e7b561ed8ad1969a9e17ad33e6471b7c6a2b7b
parent3fe96958fa3d730f6adcac5979a57f03b705a196 (diff)
downloadflex-git-a0c76652f7bf3221f2bc5a15137aedfe2c278969.tar.gz
chore(gh-actions): Build and test on GitHub Actions CI platform.
Use ubuntu-18.04.
-rw-r--r--.github/workflows/build.yml29
1 files changed, 29 insertions, 0 deletions
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