feat ci: add basic macos support in gh CI #32
Workflow file for this run
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: CI | |
'on': | |
pull_request: | |
push: | |
branches: | |
- master | |
- develop | |
- feature/** | |
env: | |
UBSAN_OPTIONS: print_stacktrace=1 | |
ASAN_OPTIONS: detect_odr_violation=2 | |
jobs: | |
macos: | |
name: MacOS | |
runs-on: macos-latest | |
env: | |
CMAKE_FLAGS: >- | |
-DUSERVER_SANITIZE="ub addr" | |
-DCMAKE_BUILD_TYPE=Debug | |
-DUSERVER_NO_WERROR=OFF | |
-DUSERVER_FEATURE_REDIS_HI_MALLOC=1 | |
-DUSERVER_FEATURE_CRYPTOPP_BLAKE2=0 | |
-DUSERVER_FEATURE_POSTGRESQL=0 | |
-DUSERVER_FEATURE_GRPC=0 | |
-DUSERVER_FEATURE_OTLP=0 | |
-DUSERVER_FEATURE_MYSQL=0 | |
-DUSERVER_FEATURE_RABBITMQ=0 | |
-DUSERVER_FEATURE_ROCKS=0 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: export SDKROOT | |
run: | | |
export SDKROOT="`xcrun --show-sdk-path`" | |
- name: Update brew | |
run: | | |
brew update | |
cat "$(brew --repository)/Library/Taps/homebrew/homebrew-core/Formula/foo.rb" > .github/brew-formulae | |
- name: Cache Homebrew Packages | |
uses: actions/cache@v3 | |
with: | |
path: $(brew --prefix) | |
key: | | |
macos-homebrew-${{ hashFiles('.github/brew-formulae') }}-${{ hashFiles('scripts/docs/en/deps/macos.md') }} | |
- name: Install brew packages | |
run: | | |
HOMEBREW_NO_AUTO_UPDATE=1 brew install $(cat scripts/docs/en/deps/macos.md) | |
brew link postgresql@16 | |
- name: Run cmake | |
run: | | |
mkdir build_debug | |
cd build_debug | |
cmake $CMAKE_FLAGS .. | |
- name: Compile | |
run: | | |
cd build_debug | |
make -j$(nproc) -k |