Skip to content

Commit fd32e60

Browse files
carlocabsylvestre
authored andcommitted
Add workflow for Homebrew LLVM
It would be nice to test Homebrew LLVM here too. Some of the tests are still failing, and I plan to fix those.
1 parent 8a63bd8 commit fd32e60

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/homebrew.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Test Homebrew LLVM
2+
on:
3+
push:
4+
pull_request:
5+
schedule:
6+
- cron: "0 4 * * 1"
7+
8+
jobs:
9+
build:
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
matrix:
13+
os: [macos-12, ubuntu-22.04]
14+
fail-fast: false
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- name: Install Dependencies
19+
run: brew install cmake lit llvm
20+
21+
- name: Run the testsuite
22+
run: |
23+
cmake -S . -B build -DCMAKE_PREFIX_PATH="$(brew --prefix llvm)"
24+
cmake --build build --target check --verbose

0 commit comments

Comments
 (0)