Skip to content

Commit

Permalink
fix: make MacOS builds work (mudler#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
mudler authored Apr 22, 2023
1 parent 3e71c90 commit 676e15f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,19 @@ jobs:
run: |
make test
# macOS-latest:
# runs-on: macOS-latest
macOS-latest:
runs-on: macOS-latest

# steps:
# - name: Clone
# uses: actions/checkout@v1
# with:
# submodules: true

# - name: Dependencies
# run: |
# brew update
# brew install sdl2
steps:
- name: Clone
uses: actions/checkout@v1
with:
submodules: true

# - name: Test
# run: |
# make test
- name: Dependencies
run: |
brew update
brew install sdl2
- name: Test
run: |
make test
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ GOTEST=$(GOCMD) test
GOVET=$(GOCMD) vet
BINARY_NAME=local-ai
GOLLAMA_VERSION?=llama.cpp-8687c1f
GOGPT4ALLJ_VERSION?=1f548782d80d48b9a0fac33aae6f129358787bc0
GOGPT2_VERSION?=1c24f5b86ac428cd5e81dae1f1427b1463bd2b06
GOGPT4ALLJ_VERSION?=1f7bff57f66cb7062e40d0ac3abd2217815e5109
GOGPT2_VERSION?=245a5bfe6708ab80dc5c733dcdbfbe3cfd2acdaa

GREEN := $(shell tput -Txterm setaf 2)
YELLOW := $(shell tput -Txterm setaf 3)
Expand Down

0 comments on commit 676e15f

Please sign in to comment.