Skip to content

Commit 7549ae1

Browse files
committed
Test action
Test
1 parent 745379a commit 7549ae1

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
types:
6+
7+
jobs:
8+
build:
9+
runs-on: macOS-latest
10+
11+
steps:
12+
- uses: actions/checkout@v1
13+
- name: Create build directory
14+
run: mkdir build
15+
- name: Change to build directory
16+
run: cd build
17+
- name: Configure llvm
18+
run: cmake -G Ninja ../llvm -DCMAKE_BUILD_TYPE=Release -DLLVM_BUILD_LLVM_DYLIB=ON -DLLVM_LINK_LLVM_DYLIB=ON
19+
- name: Build and test llvm
20+
run: ninja check-all
21+
22+

0 commit comments

Comments
 (0)