Skip to content

Commit

Permalink
Test action
Browse files Browse the repository at this point in the history
Test
  • Loading branch information
tstellar committed Oct 19, 2019
1 parent 745379a commit 7549ae1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
types:

jobs:
build:
runs-on: macOS-latest

steps:
- uses: actions/checkout@v1
- name: Create build directory
run: mkdir build
- name: Change to build directory
run: cd build
- name: Configure llvm
run: cmake -G Ninja ../llvm -DCMAKE_BUILD_TYPE=Release -DLLVM_BUILD_LLVM_DYLIB=ON -DLLVM_LINK_LLVM_DYLIB=ON
- name: Build and test llvm
run: ninja check-all


0 comments on commit 7549ae1

Please sign in to comment.