1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
name: Mac OS build
on:
push:
branches:
- '**'
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-13, macos-14, macos-15]
steps:
- uses: actions/checkout@v5
- name: Setup
env:
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
run: |
brew install automake autoconf libtool boost ccache
- name: Cache
uses: hendrikmuhs/ccache-action@v1.2
with:
key: macos-ci-build-${{ matrix.os }}-${{ github.ref }}
restore-keys: |
macos-ci-build-${{ matrix.os }}-${{ github.ref }}
macos-ci-build-${{ matrix.os }}-refs/heads/master
macos-ci-build-${{ matrix.os }}-
- name: Compiler version
run: |
clang --version
- name: Build
run: |
./autogen.sh
./configure --disable-shared --with-boost-include=`brew --prefix`/include ${{ matrix.configureflags }} CC="ccache clang" CXX="ccache clang++" CXXFLAGS="-O2 -g0 -Wall -Werror ${{ matrix.cxxflags }}"
make -j 3
- name: Run tests
run: |
./test-suite/quantlib-test-suite --log_level=message
- name: Run examples
run: |
make -C Examples check-examples
|