File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 5656 cd ${{ github.workspace }}
5757 CI_CONFIG="ci/configs/freebsd.bash" bash ci/scripts/ci.sh
5858
59+ build-macos :
60+ runs-on : macos-latest
61+ name : build • macos
62+
63+ steps :
64+ - uses : actions/checkout@v5
65+
66+ - name : Install dependencies
67+ env :
68+ HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK : 1
69+ run : |
70+ brew install --quiet cmake ninja git capnp
71+
72+ - name : Run CI script
73+ run : |
74+ CI_CONFIG="ci/configs/macos.bash" bash ci/scripts/ci.sh
75+
5976 build :
6077 runs-on : ubuntu-latest
6178
Original file line number Diff line number Diff line change 1+ CI_DESC=" CI config for macOS"
2+ CI_DIR=build-macos
3+ export CXXFLAGS=" -Werror -Wall -Wextra -Wpedantic -Wno-unused-parameter"
4+ CMAKE_ARGS=(-G Ninja)
5+ BUILD_ARGS=(-k 0)
You can’t perform that action at this time.
0 commit comments