We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c89eada commit 446d5f5Copy full SHA for 446d5f5
.github/workflows/test.yaml
@@ -76,4 +76,24 @@ jobs:
76
python3 -m pip install .[all] --verbose
77
- name: Test with pytest
78
run: |
79
- python3 -m pytest
+ python3 -m pytest
80
+
81
+ build-macos-metal:
82
83
+ runs-on: macos-latest
84
85
+ steps:
86
+ - uses: actions/checkout@v3
87
+ with:
88
+ submodules: "true"
89
+ - name: Set up Python 3.8
90
+ uses: actions/setup-python@v4
91
92
+ python-version: "3.8"
93
+ - name: Install dependencies
94
+ run: |
95
+ python3 -m pip install --upgrade pip
96
+ CMAKE_ARGS="-DLLAMA_METAL=on" python3 -m pip install .[all] --verbose
97
+ - name: Test with pytest
98
99
0 commit comments