From 3939a60c73694d5b76d60f61354e0aeb60b270c6 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Tue, 1 Jun 2021 05:12:57 +0200 Subject: ci.yml: try to build on macOS --- .github/workflows/ci.yml | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) (limited to '.github') 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 -- cgit v1.2.3