Skip to content

Commit

Permalink
Add workflow for Homebrew LLVM
Browse files Browse the repository at this point in the history
It would be nice to test Homebrew LLVM here too.

Some of the tests are still failing, and I plan to fix those.
  • Loading branch information
carlocab authored and sylvestre committed May 18, 2024
1 parent b6d1532 commit 34e8fca
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/homebrew.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test Homebrew LLVM
on:
push:
pull_request:
schedule:
- cron: "0 4 * * 1"

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12, ubuntu-22.04]
fail-fast: false
steps:
- uses: actions/checkout@v2

- name: Install Dependencies
run: brew install cmake lit llvm

- name: Run the testsuite
run: |
cmake -S . -B build -DCMAKE_PREFIX_PATH="$(brew --prefix llvm)"
cmake --build build --target check --verbose

0 comments on commit 34e8fca

Please sign in to comment.