Skip to content

Commit 6a89084

Browse files
committed
Update CI
1 parent 64b9977 commit 6a89084

File tree

2 files changed

+37
-27
lines changed

2 files changed

+37
-27
lines changed

CONTRIBUTE.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

Makefile.toml

Lines changed: 37 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,67 +3,67 @@ default_to_workspace = false
33
skip_core_tasks = true
44

55
[tasks.clean]
6-
command= "cargo"
7-
args=["clean"]
6+
command = "cargo"
7+
args = ["clean"]
88

99
[tasks.unit-tests]
10-
command= "cargo"
11-
args=["test"]
10+
command = "cargo"
11+
args = ["test"]
1212

1313
[tasks.build-anthropic]
1414
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
1515
command = "cargo-component"
16-
args=["build", "-p", "golem-llm-anthropic"]
16+
args = ["build", "-p", "golem-llm-anthropic"]
1717

1818
[tasks.build-anthropic-portable]
1919
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
2020
command = "cargo-component"
21-
args=["build", "-p", "golem-llm-anthropic", "--no-default-features"]
21+
args = ["build", "-p", "golem-llm-anthropic", "--no-default-features"]
2222

2323
[tasks.build-grok]
2424
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
2525
command = "cargo-component"
26-
args=["build", "-p", "golem-llm-grok"]
26+
args = ["build", "-p", "golem-llm-grok"]
2727

2828
[tasks.build-grok-portable]
2929
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
3030
command = "cargo-component"
31-
args=["build", "-p", "golem-llm-grok", "--no-default-features"]
31+
args = ["build", "-p", "golem-llm-grok", "--no-default-features"]
3232

3333
[tasks.build-openai]
3434
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
3535
command = "cargo-component"
36-
args=["build", "-p", "golem-llm-openai"]
36+
args = ["build", "-p", "golem-llm-openai"]
3737

3838
[tasks.build-openai-portable]
3939
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
4040
command = "cargo-component"
41-
args=["build", "-p", "golem-llm-openai", "--no-default-features"]
41+
args = ["build", "-p", "golem-llm-openai", "--no-default-features"]
4242

4343
[tasks.build-openrouter]
4444
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
4545
command = "cargo-component"
46-
args=["build", "-p", "golem-llm-openrouter"]
46+
args = ["build", "-p", "golem-llm-openrouter"]
4747

4848
[tasks.build-openrouter-portable]
4949
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
5050
command = "cargo-component"
51-
args=["build", "-p", "golem-llm-openrouter", "--no-default-features"]
51+
args = ["build", "-p", "golem-llm-openrouter", "--no-default-features"]
5252

5353
[tasks.build]
5454
dependencies = [
5555
"build-anthropic",
5656
"build-grok",
5757
"build-openai",
58-
"build-openrouter"
58+
"build-openrouter",
5959
]
6060

6161
[tasks.build-portable]
6262
dependencies = [
6363
"build-anthropic-portable",
6464
"build-grok-portable",
6565
"build-openai-portable",
66-
"build-openrouter-portable"
66+
"build-openrouter-portable",
6767
]
6868

6969
[tasks.build-all]
@@ -91,57 +91,69 @@ cp target/wasm32-wasip1/debug/golem_llm_openrouter.wasm components/debug/golem_l
9191
[tasks.release-build-anthropic]
9292
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
9393
command = "cargo-component"
94-
args=["build", "-p", "golem-llm-anthropic", "--release"]
94+
args = ["build", "-p", "golem-llm-anthropic", "--release"]
9595

9696
[tasks.release-build-anthropic-portable]
9797
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
9898
command = "cargo-component"
99-
args=["build", "-p", "golem-llm-anthropic", "--release", "--no-default-features"]
99+
args = [
100+
"build",
101+
"-p",
102+
"golem-llm-anthropic",
103+
"--release",
104+
"--no-default-features",
105+
]
100106

101107
[tasks.release-build-grok]
102108
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
103109
command = "cargo-component"
104-
args=["build", "-p", "golem-llm-grok", "--release"]
110+
args = ["build", "-p", "golem-llm-grok", "--release"]
105111

106112
[tasks.release-build-grok-portable]
107113
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
108114
command = "cargo-component"
109-
args=["build", "-p", "golem-llm-grok", "--release", "--no-default-features"]
115+
args = ["build", "-p", "golem-llm-grok", "--release", "--no-default-features"]
110116

111117
[tasks.release-build-openai]
112118
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
113119
command = "cargo-component"
114-
args=["build", "-p", "golem-llm-openai", "--release"]
120+
args = ["build", "-p", "golem-llm-openai", "--release"]
115121

116122
[tasks.release-build-openai-portable]
117123
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
118124
command = "cargo-component"
119-
args=["build", "-p", "golem-llm-openai", "--release", "--no-default-features"]
125+
args = ["build", "-p", "golem-llm-openai", "--release", "--no-default-features"]
120126

121127
[tasks.release-build-openrouter]
122128
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
123129
command = "cargo-component"
124-
args=["build", "-p", "golem-llm-openrouter", "--release"]
130+
args = ["build", "-p", "golem-llm-openrouter", "--release"]
125131

126132
[tasks.release-build-openrouter-portable]
127133
install_crate = { crate_name = "cargo-component", version = "0.20.0" }
128134
command = "cargo-component"
129-
args=["build", "-p", "golem-llm-openrouter", "--release", "--no-default-features"]
135+
args = [
136+
"build",
137+
"-p",
138+
"golem-llm-openrouter",
139+
"--release",
140+
"--no-default-features",
141+
]
130142

131143
[tasks.release-build]
132144
dependencies = [
133145
"release-build-anthropic",
134146
"release-build-grok",
135147
"release-build-openai",
136-
"release-build-openrouter"
148+
"release-build-openrouter",
137149
]
138150

139151
[tasks.release-build-portable]
140152
dependencies = [
141153
"release-build-anthropic-portable",
142154
"release-build-grok-portable",
143155
"release-build-openai-portable",
144-
"release-build-openrouter-portable"
156+
"release-build-openrouter-portable",
145157
]
146158

147159
[tasks.release-build-all]
@@ -255,7 +267,7 @@ args = [
255267
description = "Builds all test components with golem-cli"
256268
install_crate = "cargo-binstall"
257269
script = '''
258-
cargo-binstall golem-cli@1.2.2-dev.10 --locked --force --no-confirm
270+
cargo-binstall golem-cli@1.2.2-dev.11 --locked --force --no-confirm
259271
cd test
260272
golem-cli app clean
261273
golem-cli app build -b anthropic-debug

0 commit comments

Comments
 (0)