[FIX] fix compile on ubuntu18.04 + use anonymous namespace for hardco… #715
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: Build on Macos | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- '**.md' | |
env: | |
proc_num: $(sysctl -n hw.logicalcpu) | |
jobs: | |
compile-with-make: | |
runs-on: macos-latest # https://github.com/actions/runner-images | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install dependences | |
run: | | |
brew install ./homebrew-formula/protobuf.rb | |
brew install openssl gnu-getopt coreutils gflags leveldb | |
- name: config_brpc | |
run: | | |
GETOPT_PATH=$(find "/usr/local/Cellar/" -name "getopt" -type f -perm +111 -exec dirname {} \;) | |
export PATH=$GETOPT_PATH:$PATH | |
./config_brpc.sh --header="/usr/local/include" --libs="/usr/local/lib" | |
- name: compile | |
run: | | |
make -j ${{env.proc_num}} | |
compile-with-cmake: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install dependences | |
run: | | |
brew install ./homebrew-formula/protobuf.rb | |
brew install openssl gnu-getopt coreutils gflags leveldb | |
- name: cmake | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
- name: compile | |
run: | | |
cd build | |
make -j ${{env.proc_num}} |