ccls/.github/workflows/build_linux.yaml
panxueqian a4e7b93917 Add github CI integration.
CI will be responsible for compiling source code and code formatting.
2020-07-04 16:57:37 +08:00

18 lines
423 B
YAML

name: try build in ubuntu
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install depend
run: sudo apt install clang libclang-8-dev
- name: clone submodule
run: git submodule update --init --recursive
- name: cmake generate
run: cmake -H. -Bbuild/Debug -DCMAKE_BUILD_TYPE=Debug
- name: compile
run: cmake --build build/Debug