mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-28 14:35:00 +00:00
fix: make MacOS builds work (#61)
This commit is contained in:
parent
3e71c90949
commit
676e15f785
2 changed files with 16 additions and 17 deletions
29
.github/workflows/test.yml
vendored
29
.github/workflows/test.yml
vendored
|
@ -26,20 +26,19 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
make test
|
make test
|
||||||
|
|
||||||
# macOS-latest:
|
macOS-latest:
|
||||||
# runs-on: macOS-latest
|
runs-on: macOS-latest
|
||||||
|
|
||||||
# steps:
|
steps:
|
||||||
# - name: Clone
|
- name: Clone
|
||||||
# uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
# with:
|
with:
|
||||||
# submodules: true
|
submodules: true
|
||||||
|
|
||||||
# - name: Dependencies
|
- name: Dependencies
|
||||||
# run: |
|
run: |
|
||||||
# brew update
|
brew update
|
||||||
# brew install sdl2
|
brew install sdl2
|
||||||
|
- name: Test
|
||||||
# - name: Test
|
run: |
|
||||||
# run: |
|
make test
|
||||||
# make test
|
|
4
Makefile
4
Makefile
|
@ -3,8 +3,8 @@ GOTEST=$(GOCMD) test
|
||||||
GOVET=$(GOCMD) vet
|
GOVET=$(GOCMD) vet
|
||||||
BINARY_NAME=local-ai
|
BINARY_NAME=local-ai
|
||||||
GOLLAMA_VERSION?=llama.cpp-8687c1f
|
GOLLAMA_VERSION?=llama.cpp-8687c1f
|
||||||
GOGPT4ALLJ_VERSION?=1f548782d80d48b9a0fac33aae6f129358787bc0
|
GOGPT4ALLJ_VERSION?=1f7bff57f66cb7062e40d0ac3abd2217815e5109
|
||||||
GOGPT2_VERSION?=1c24f5b86ac428cd5e81dae1f1427b1463bd2b06
|
GOGPT2_VERSION?=245a5bfe6708ab80dc5c733dcdbfbe3cfd2acdaa
|
||||||
|
|
||||||
GREEN := $(shell tput -Txterm setaf 2)
|
GREEN := $(shell tput -Txterm setaf 2)
|
||||||
YELLOW := $(shell tput -Txterm setaf 3)
|
YELLOW := $(shell tput -Txterm setaf 3)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue