aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2021-06-01 05:12:57 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2021-06-01 05:12:57 +0200
commit3939a60c73694d5b76d60f61354e0aeb60b270c6 (patch)
tree6db86402c8a4319548e8efa9c75c27415542964e /.github/workflows/ci.yml
parent9f8b6b044a09d3020d0b8646d540491a5d82d156 (diff)
downloadsciteco-3939a60c73694d5b76d60f61354e0aeb60b270c6.tar.gz
ci.yml: try to build on macOS
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