Files
c3c/.github/workflows/main.yml
Christoffer Lerno 6790bba04f Updated main.yml
2020-05-20 15:06:49 +02:00

22 lines
440 B
YAML

name: CI
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: (Linux) Download LLVM
run: sudo apt-get install llvm-9 llvm-9-dev
- name: Build
run: |
mkdir build && cd build
cmake -DLLVM_DIR=/usr/lib/llvm/cmake -DCMAKE_BUILD_TYPE=Debug ..
cmake --build .