use install-boost 2.5.0 for msw #252
Workflow file for this run
This file contains hidden or 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: github-ci-osx | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install boost | |
run: brew install [email protected] && brew link [email protected] | |
- name: Install llvm | |
run: brew install llvm | |
- name: Install cppcheck | |
run: brew install cppcheck | |
- name: Configure | |
run: ./build-gen.sh -g -t | |
env: | |
CC: /opt/homebrew/opt/llvm/bin/clang | |
CXX: /opt/homebrew/opt/llvm/bin/clang | |
- name: Run tests | |
run: cd build && ctest -VV -I 2,5 | |
- name: Run cppcheck | |
run: cd build && ninja cppcheck | |
- name: Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wex-lib-macos | |
path: | | |
data/*.xml | |
build/**/*.dylib | |
build/**/setup.h |