Skip to content

Commit ccaae52

Browse files
committed
ci fixes
1 parent 8e6522c commit ccaae52

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,9 @@ jobs:
137137
- name: Build and test Ollama integration
138138
run: |
139139
set -e
140-
cargo make --makefile golem-llm/Makefile.toml build-llm-ollama
141-
cd golem-llm/test
140+
cd golem-llm
141+
cargo make build-ollama
142+
cd test
142143
golem-cli app build -b ollama-debug
143144
golem-cli app deploy -b ollama-debug
144145
golem-cli worker new -e GOLEM_OLLAMA_BASE_URL=http://localhost:11434 test:llm/ollama-1

Makefile.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,20 @@ args = ["clippy", "--all-targets", "--", "--no-deps", "-Dwarnings"]
3838
script_runner = "@duckscript"
3939
script = '''
4040
echo "Building all packages..."
41-
exec --fail-on-error cargo make --makefile golem-llm/Makefile.toml build-all
41+
exec --fail-on-error sh -c "cd golem-llm && cargo make build-all"
4242
'''
4343

4444
[tasks.build-test-components]
4545
script_runner = "@duckscript"
4646
script = '''
4747
echo "Building test components..."
48-
exec --fail-on-error cargo make --makefile golem-llm/Makefile.toml build-test-components
48+
exec --fail-on-error sh -c "cd golem-llm && cargo make build-test-components"
49+
4950
'''
5051

5152
[tasks.release-build-all]
5253
script_runner = "@duckscript"
5354
script = '''
5455
echo "Building all packages in release mode..."
55-
exec --fail-on-error cargo make --makefile golem-llm/Makefile.toml release-build-all
56+
exec --fail-on-error sh -c "cd golem-llm && cargo make release-build-all"
5657
'''

0 commit comments

Comments
 (0)