We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 27904dc + a984efc commit 623ad0dCopy full SHA for 623ad0d
.github/workflows/ci.yml
@@ -73,7 +73,25 @@ jobs:
73
run: sudo apt-get install libc-dev build-essential
74
- name: test
75
run: make test
76
-
+ test-macos:
77
+ name: test (macOS)
78
+ runs-on: macos-14
79
+ env:
80
+ CARGO_TERM_COLOR: always
81
+ LIBRARY_PATH: /opt/homebrew/lib
82
+ MLIR_SYS_180_PREFIX: /opt/homebrew/opt/llvm@18
83
+ LLVM_SYS_180_PREFIX: /opt/homebrew/opt/llvm@18
84
+ TABLEGEN_180_PREFIX: /opt/homebrew/opt/llvm@18
85
+ RUST_LOG: debug
86
+ steps:
87
+ - uses: actions/checkout@v4
88
+ - name: Rustup toolchain install
89
+ uses: dtolnay/[email protected]
90
+ - uses: homebrew/actions/setup-homebrew@master
91
+ - name: install llvm
92
+ run: brew install llvm@18
93
+ - name: Run tests
94
+ run: make test
95
coverage:
96
name: coverage
97
runs-on: ubuntu-latest
0 commit comments