You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- name: macos-x64-cpu
- on: [push, pull_request]
- jobs:
- macos-clang:
- runs-on: macos-latest
- steps:
- - uses: actions/checkout@v2
- - name: protobuf
- run: brew install protobuf opencv3
- - name: configure
- run: mkdir build && cd build && cmake ..
- - name: build
- run: cmake --build build -j 2
- - name: test
- run: cd build && ctest --output-on-failure -j 2
|