aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml36
1 files changed, 35 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4351a0c..9592e8a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,7 +7,7 @@ on:
branches: [ master ]
jobs:
- build:
+ ubuntu:
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
@@ -55,3 +55,37 @@ jobs:
# run: xvfb-run -a make distcheck
- name: Build Source Tarball
run: make dist
+
+ macos:
+ runs-on: macos-latest
+
+ steps:
+
+ - name: Recursive Git Clone
+ uses: actions/checkout@v2
+ with:
+ submodules: recursive
+
+ - name: Install Build Dependencies
+ run: >
+ brew install
+ autoconf automake libtool
+ glib ncurses
+ groff doxygen
+ - name: Configure Build
+ run: |
+ autoreconf -i
+ ./configure --with-interface=ncurses --enable-html-manual
+
+ - run: make
+ - run: make install
+ - name: Run Test Suite
+ run: make check
+ - name: Build Developer Documentation
+ run: cd doc && make devdoc
+ # FIXME: Will try to perform an out-of-tree build which will not
+ # work without manual intervention due to Scintilla.
+# - name: make distcheck
+# run: make distcheck
+ - name: Build Source Tarball
+ run: make dist