Skip to content

Merge pull request #2387 from lhsoft/append_header #6

Merge pull request #2387 from lhsoft/append_header

Merge pull request #2387 from lhsoft/append_header #6

Workflow file for this run

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}}