Skip to content

Update build-macos.yml #105

Update build-macos.yml

Update build-macos.yml #105

Workflow file for this run

name: build-macos
# build on pushes and pull requests on main branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
TESTS_BOT_TOKEN: ${{ secrets.TESTS_BOT_TOKEN }}
jobs:
build:
# https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: macos-latest
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v4
# https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md#installed-software
# macos image comes with installed clang, cmake .. (except ninja-build)
- name: Install deps
run: |
brew update
brew install ninja
brew install llvm@18
echo 'export PATH="/opt/homebrew/opt/llvm@18/bin:$PATH"' >> /Users/runner/.bash_profile
export LDFLAGS="-L/opt/homebrew/opt/llvm@18/lib"
export CPPFLAGS="-I/opt/homebrew/opt/llvm@18/include"
- name: Ensure deps are installed
run: |
cmake --version
clang++ --version
ninja --version
- name: Print system information
run: system_profiler SPSoftwareDataType SPHardwareDataType
- name: Build & run CText flow
run: |
mkdir cmake-build-debug && cd cmake-build-debug
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=ON -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang
export TESTS_BOT_TOKEN=${{ secrets.TESTS_BOT_TOKEN }}
ninja tests/all -j$(sysctl -n hw.logicalcpu)
ninja test