Skip to content

Commit 9f9a6ec

Browse files
committed
ci fix
1 parent 1e5432e commit 9f9a6ec

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
run: cargo binstall --force --locked cargo-component@0.21.1
8585
- name: Build all test components
8686
run: cargo make build-test-components
87-
ollama-llm-integration-tests:
87+
ollama-integration-tests:
8888
runs-on: ubuntu-latest
8989
steps:
9090
- uses: actions/checkout@v4
@@ -115,13 +115,13 @@ jobs:
115115
set -e
116116
docker run -d --name ollama -p 11434:11434 ollama/ollama:latest
117117
timeout 60 bash -c 'until curl -f http://localhost:11434/api/version; do sleep 2; done'
118-
echo "Pulling qwen3:1.7b"
119-
docker exec ollama ollama pull qwen3:1.7b
120-
echo "Pulling gemma3:4b"
121-
docker exec ollama ollama pull gemma3:4b
118+
echo "Pulling Qwen2.5:1.5b"
119+
docker exec ollama ollama pull qwen2.5:1.5b
120+
echo "Pulling Gemma2:2b"
121+
docker exec ollama ollama pull gemma2:2b
122122
echo "Verifying models are available"
123-
docker exec ollama ollama list | grep -q "qwen3:1.7b" || exit 1
124-
docker exec ollama ollama list | grep -q "gemma3:4b" || exit 1
123+
docker exec ollama ollama list | grep -q "qwen2.5:1.5b" || exit 1
124+
docker exec ollama ollama list | grep -q "gemma2:2b" || exit 1
125125
echo "Ollama setup completed."
126126
- name: Install and Run latest Golem Server
127127
run: |
@@ -137,8 +137,8 @@ jobs:
137137
- name: Build and test Ollama integration
138138
run: |
139139
set -e
140-
cargo make build-llm-ollama
141-
cd golem-llm/test
140+
cargo make build-ollama
141+
cd test
142142
golem-cli app build -b ollama-debug
143143
golem-cli app deploy -b ollama-debug
144144
golem-cli worker new -e GOLEM_OLLAMA_BASE_URL=http://localhost:11434 test:llm/ollama-1
@@ -153,7 +153,7 @@ jobs:
153153
needs:
154154
- tests
155155
- build-test-components
156-
- ollama-llm-integration-tests
156+
- ollama-integration-tests
157157
runs-on: ubuntu-latest
158158
permissions:
159159
contents: write
@@ -183,4 +183,4 @@ jobs:
183183
- name: Login GH CLI
184184
shell: bash
185185
run: gh auth login --with-token < <(echo ${{ secrets.GITHUB_TOKEN }})
186-
- run: gh release upload -R golemcloud/golem-llm --clobber ${{ github.ref_name }} components/release/*.wasm
186+
- run: gh release upload -R golemcloud/golem-llm --clobber ${{ github.ref_name }} components/release/*.wasm

0 commit comments

Comments
 (0)