1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-26 07:29:17 +02:00
mu/.github/workflows/build-and-test.yml
Dirk-Jan C. Binnema 5531a6fe0f actions: disable guile for now
Seems it's picking up some version of Guile on MacOS which is not working.
2021-05-29 16:22:17 +03:00

40 lines
869 B
YAML

name: Build & run tests
on:
- push
- pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
steps:
- uses: actions/checkout@v2
- if: contains(matrix.os, 'ubuntu')
name: ubuntu-deps
run: |
sudo apt update
sudo apt-get install automake autoconf-archive autotools-dev libglib2.0-dev libxapian-dev libgmime-3.0-dev m4 make libtool pkg-config
- if: contains(matrix.os, 'macos')
name: macos-deps
run: |
brew install autoconf automake libgpg-error libtool pkg-config gettext glib gmime xapian
- name: configure
run: ./autogen.sh --disable-guile
- name: build
run: make
- name: test
run: make test