Skip to content

Commit

Permalink
Merge pull request #132 from lambdaclass/macos-ci
Browse files Browse the repository at this point in the history
Add macos ci
  • Loading branch information
juanbono committed May 9, 2024
2 parents 27904dc + a984efc commit 623ad0d
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,25 @@ jobs:
run: sudo apt-get install libc-dev build-essential
- name: test
run: make test

test-macos:
name: test (macOS)
runs-on: macos-14
env:
CARGO_TERM_COLOR: always
LIBRARY_PATH: /opt/homebrew/lib
MLIR_SYS_180_PREFIX: /opt/homebrew/opt/llvm@18
LLVM_SYS_180_PREFIX: /opt/homebrew/opt/llvm@18
TABLEGEN_180_PREFIX: /opt/homebrew/opt/llvm@18
RUST_LOG: debug
steps:
- uses: actions/checkout@v4
- name: Rustup toolchain install
uses: dtolnay/rust-toolchain@1.78.0
- uses: homebrew/actions/setup-homebrew@master
- name: install llvm
run: brew install llvm@18
- name: Run tests
run: make test
coverage:
name: coverage
runs-on: ubuntu-latest
Expand Down

0 comments on commit 623ad0d

Please sign in to comment.