mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-04 16:02:15 +00:00
21 lines
544 B
YAML
21 lines
544 B
YAML
name: try build in mac os
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: install depend
|
|
run: brew install llvm
|
|
- name: clone submodule
|
|
run: git submodule update --init --recursive
|
|
- name: cmake generate
|
|
run: cmake -H. -Bbuild/Debug
|
|
-DClang_DIR=/usr/local/opt/llvm/lib/cmake/clang
|
|
-DLLVM_DIR=/usr/local/opt/llvm/lib/cmake
|
|
-DCMAKE_BUILD_TYPE=Debug
|
|
- name: compile
|
|
run: cmake --build ./build/Debug
|