build: bump version to 1.12.5 #1312
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 meson ninja-build libglib2.0-dev libxapian-dev libgmime-3.0-dev libcld2-dev pkg-config guile-3.0-dev emacs texinfo | |
- if: contains(matrix.os, 'macos') | |
name: macos-deps | |
run: | | |
brew install meson ninja libgpg-error libtool pkg-config glib gmime xapian guile emacs texinfo | |
- name: configure | |
run: ./autogen.sh # '-Db_sanitize=address' | |
- name: build | |
run: make | |
- name: test | |
run: make test-verbose-if-fail |