Mac OS build with non-default configuration #121
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: Mac OS build with non-default configuration | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-13, macos-14] | |
classes: [boost, std] | |
include: | |
- classes: std | |
configureflags: --enable-std-classes | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
env: | |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 | |
run: | | |
brew install automake autoconf libtool boost | |
- name: Compiler version | |
run: | | |
clang --version | |
- name: Build | |
run: | | |
./autogen.sh | |
./configure --disable-shared --with-boost-include=`brew --prefix`/include --enable-error-lines --enable-error-functions --enable-tracing --enable-indexed-coupons --enable-extra-safety-checks --enable-sessions --enable-thread-safe-observer-pattern --enable-intraday --disable-faster-lazy-objects --enable-throwing-in-cycles --enable-null-as-functions ${{ matrix.configureflags }} CC="clang" CXX="clang++" CXXFLAGS="-O2 -g0 -Wall -Werror" | |
cat ql/config.hpp | |
make -j 3 | |
- name: Run tests | |
run: | | |
./test-suite/quantlib-test-suite --log_level=message | |
- name: Run examples | |
run: | | |
make -C Examples check-examples |