Skip to content

Commit c34816f

Browse files
committed
Fixes
1 parent fb9b5f7 commit c34816f

File tree

19 files changed

+76
-61
lines changed

19 files changed

+76
-61
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ jobs:
129129
- name: Build and test golem:exec implementations
130130
run: |
131131
set -eo pipefail
132-
cargo make --cwd exec build
132+
cargo make --cwd exec release-build
133133
cd test/exec
134134
golem profile config local set-format json
135-
golem app deploy
135+
golem app -b release deploy
136136
golem worker invoke test:exec-js/test-1 test01 | jq -e '(.result_wave[0]=="true")'
137137
golem worker invoke test:exec-js/test-2 test02 | jq -e '(.result_wave[0]=="true")'
138138
golem worker invoke test:exec-js/test-3 test03 | jq -e '(.result_wave[0]=="true")'
@@ -298,13 +298,13 @@ jobs:
298298
- name: Build and test graph integration
299299
run: |
300300
set -eo pipefail
301-
cargo make --cwd graph build-arangodb
302-
cargo make --cwd graph build-janusgraph
303-
cargo make --cwd graph build-neo4j
301+
cargo make --cwd graph release-build-arangodb
302+
cargo make --cwd graph release-build-janusgraph
303+
cargo make --cwd graph release-build-neo4j
304304
cd test/graph
305305
306306
echo "Testing ArangoDB integration..."
307-
golem app deploy -b arangodb-debug test:graph test:helper
307+
golem app deploy -b arangodb-release test:graph test:helper
308308
golem worker new -e ARANGODB_HOST=localhost -e ARANGODB_USER="" -e ARANGODB_PASSWORD="" -e ARANGODB_PORT="8529" -e ARANGODB_DATABASE="test" test:graph/arangodb-1
309309
golem worker invoke test:graph/arangodb-1 test1 | grep -v "ERROR: "
310310
golem worker invoke test:graph/arangodb-1 test2 | grep -v "ERROR: "
@@ -314,10 +314,10 @@ jobs:
314314
golem worker invoke test:graph/arangodb-1 test6 | grep -v "ERROR: "
315315
golem worker invoke test:graph/arangodb-1 test7 | grep -v "ERROR: "
316316
echo "ArangoDB tests completed successfully"
317-
golem app clean -b arangodb-debug
317+
golem app clean -b arangodb-release
318318
319319
echo "Testing JanusGraph integration..."
320-
golem app deploy -b janusgraph-debug test:graph test:helper
320+
golem app deploy -b janusgraph-release test:graph test:helper
321321
sleep 10
322322
golem worker new -e JANUSGRAPH_HOST=localhost -e JANUSGRAPH_USER="" -e JANUSGRAPH_PASSWORD="" -e JANUSGRAPH_PORT="8182" test:graph/janusgraph-1
323323
golem worker invoke test:graph/janusgraph-1 test1 | grep -v "ERROR: "
@@ -328,10 +328,10 @@ jobs:
328328
golem worker invoke test:graph/janusgraph-1 test6 | grep -v "ERROR: "
329329
golem worker invoke test:graph/janusgraph-1 test7 | grep -v "ERROR: "
330330
echo "JanusGraph tests completed successfully"
331-
golem app clean -b janusgraph-debug
331+
golem app clean -b janusgraph-release
332332
333333
echo "Testing Neo4j integration..."
334-
golem app deploy -b neo4j-debug test:graph test:helper
334+
golem app deploy -b neo4j-release test:graph test:helper
335335
sleep 10
336336
golem worker new -e NEO4J_HOST=localhost -e NEO4J_USER=neo4j -e NEO4J_PASSWORD=password -e NEO4J_PORT="7474" -e NEO4J_DATABASE=neo4j test:graph/neo4j-1
337337
golem worker invoke test:graph/neo4j-1 test1 | grep -v "ERROR: "
@@ -342,7 +342,7 @@ jobs:
342342
golem worker invoke test:graph/neo4j-1 test6 | grep -v "ERROR: "
343343
golem worker invoke test:graph/neo4j-1 test7 | grep -v "ERROR: "
344344
echo "Neo4j tests completed successfully"
345-
golem app clean -b neo4j-debug
345+
golem app clean -b neo4j-release
346346
347347
echo "All graph integration tests completed successfully!"
348348

Makefile.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ end
6262
script_runner = "@duckscript"
6363
script = '''
6464
#!/bin/bash
65-
domains = array llm websearch search exec graph stt
65+
domains = array llm websearch search video exec graph stt
6666
6767
# if there is no domain passed run for every domain
6868
if is_empty ${1}

graph/arangodb/src/bindings.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// Generated by `wit-bindgen` 0.41.0. DO NOT EDIT!
22
// Options used:
33
// * runtime_path: "wit_bindgen_rt"
4-
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::connection"
5-
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::schema"
4+
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::types"
65
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::errors"
7-
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::transactions"
86
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::query"
7+
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::schema"
8+
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::transactions"
9+
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::connection"
910
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::traversal"
10-
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::types"
1111
// * generate_unused_types
1212
use golem_graph::golem::graph::types as __with_name0;
1313
use golem_graph::golem::graph::errors as __with_name1;

graph/janusgraph/src/bindings.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// Generated by `wit-bindgen` 0.41.0. DO NOT EDIT!
22
// Options used:
33
// * runtime_path: "wit_bindgen_rt"
4-
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::errors"
5-
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::schema"
6-
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::types"
7-
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::traversal"
8-
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::query"
94
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::transactions"
5+
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::query"
6+
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::traversal"
7+
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::types"
108
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::connection"
9+
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::errors"
10+
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::schema"
1111
// * generate_unused_types
1212
use golem_graph::golem::graph::types as __with_name0;
1313
use golem_graph::golem::graph::errors as __with_name1;

graph/neo4j/src/bindings.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// Generated by `wit-bindgen` 0.41.0. DO NOT EDIT!
22
// Options used:
33
// * runtime_path: "wit_bindgen_rt"
4-
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::transactions"
5-
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::connection"
64
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::schema"
5+
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::types"
6+
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::transactions"
77
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::errors"
88
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::query"
9+
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::connection"
910
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::traversal"
10-
// * with "golem:graph/[email protected]" = "golem_graph::golem::graph::types"
1111
// * generate_unused_types
1212
use golem_graph::golem::graph::types as __with_name0;
1313
use golem_graph::golem::graph::errors as __with_name1;

search/meilisearch/src/bindings.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Generated by `wit-bindgen` 0.41.0. DO NOT EDIT!
22
// Options used:
33
// * runtime_path: "wit_bindgen_rt"
4-
// * with "golem:search/[email protected]" = "golem_search::golem::search::core"
54
// * with "golem:search/[email protected]" = "golem_search::golem::search::types"
5+
// * with "golem:search/[email protected]" = "golem_search::golem::search::core"
66
// * generate_unused_types
77
use golem_search::golem::search::types as __with_name0;
88
use golem_search::golem::search::core as __with_name1;

search/opensearch/src/bindings.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Generated by `wit-bindgen` 0.41.0. DO NOT EDIT!
22
// Options used:
33
// * runtime_path: "wit_bindgen_rt"
4-
// * with "golem:search/[email protected]" = "golem_search::golem::search::core"
54
// * with "golem:search/[email protected]" = "golem_search::golem::search::types"
5+
// * with "golem:search/[email protected]" = "golem_search::golem::search::core"
66
// * generate_unused_types
77
use golem_search::golem::search::types as __with_name0;
88
use golem_search::golem::search::core as __with_name1;

stt/aws/src/bindings.rs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
// Generated by `wit-bindgen` 0.36.0. DO NOT EDIT!
1+
// Generated by `wit-bindgen` 0.41.0. DO NOT EDIT!
22
// Options used:
33
// * runtime_path: "wit_bindgen_rt"
4-
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::types"
54
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::languages"
65
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::transcription"
6+
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::types"
77
// * generate_unused_types
88
use golem_stt::golem::stt::types as __with_name0;
99
use golem_stt::golem::stt::languages as __with_name1;
1010
use golem_stt::golem::stt::transcription as __with_name2;
1111
#[cfg(target_arch = "wasm32")]
12-
#[link_section = "component-type:wit-bindgen:0.36.0:golem:[email protected]:stt-library:encoded world"]
12+
#[unsafe(
13+
link_section = "component-type:wit-bindgen:0.41.0:golem:[email protected]:stt-library:encoded world"
14+
)]
1315
#[doc(hidden)]
16+
#[allow(clippy::octal_escapes)]
1417
pub static __WIT_BINDGEN_COMPONENT_TYPE: [u8; 1904] = *b"\
1518
\0asm\x0d\0\x01\0\0\x19\x16wit-component-encoding\x04\0\x07\xee\x0d\x01A\x02\x01\
1619
A\x0a\x01B\x1c\x01q\x0c\x0dinvalid-audio\x01s\0\x12unsupported-format\x01s\0\x14\
@@ -50,8 +53,8 @@ nscription\x03\0\x1c\x01p\x03\x01p\x1d\x01r\x02\x09successes\x1e\x08failures\x1f
5053
request\x1b\0\"\x04\0\x0atranscribe\x01#\x01p\x1b\x01j\x01!\x01\x05\x01@\x01\x08\
5154
requests$\0%\x04\0\x0ftranscribe-many\x01&\x04\0\x1dgolem:stt/[email protected].\
5255
0\x05\x06\x04\0\x1fgolem:stt-aws/[email protected]\x04\0\x0b\x11\x01\0\x0bstt-li\
53-
brary\x03\0\0\0G\x09producers\x01\x0cprocessed-by\x02\x0dwit-component\x070.220.\
54-
1\x10wit-bindgen-rust\x060.36.0";
56+
brary\x03\0\0\0G\x09producers\x01\x0cprocessed-by\x02\x0dwit-component\x070.227.\
57+
1\x10wit-bindgen-rust\x060.41.0";
5558
#[inline(never)]
5659
#[doc(hidden)]
5760
pub fn __link_custom_section_describing_imports() {

stt/azure/src/bindings.rs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
// Generated by `wit-bindgen` 0.36.0. DO NOT EDIT!
1+
// Generated by `wit-bindgen` 0.41.0. DO NOT EDIT!
22
// Options used:
33
// * runtime_path: "wit_bindgen_rt"
4-
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::languages"
54
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::transcription"
65
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::types"
6+
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::languages"
77
// * generate_unused_types
88
use golem_stt::golem::stt::types as __with_name0;
99
use golem_stt::golem::stt::languages as __with_name1;
1010
use golem_stt::golem::stt::transcription as __with_name2;
1111
#[cfg(target_arch = "wasm32")]
12-
#[link_section = "component-type:wit-bindgen:0.36.0:golem:[email protected]:stt-library:encoded world"]
12+
#[unsafe(
13+
link_section = "component-type:wit-bindgen:0.41.0:golem:[email protected]:stt-library:encoded world"
14+
)]
1315
#[doc(hidden)]
16+
#[allow(clippy::octal_escapes)]
1417
pub static __WIT_BINDGEN_COMPONENT_TYPE: [u8; 1906] = *b"\
1518
\0asm\x0d\0\x01\0\0\x19\x16wit-component-encoding\x04\0\x07\xf0\x0d\x01A\x02\x01\
1619
A\x0a\x01B\x1c\x01q\x0c\x0dinvalid-audio\x01s\0\x12unsupported-format\x01s\0\x14\
@@ -50,8 +53,8 @@ nscription\x03\0\x1c\x01p\x03\x01p\x1d\x01r\x02\x09successes\x1e\x08failures\x1f
5053
request\x1b\0\"\x04\0\x0atranscribe\x01#\x01p\x1b\x01j\x01!\x01\x05\x01@\x01\x08\
5154
requests$\0%\x04\0\x0ftranscribe-many\x01&\x04\0\x1dgolem:stt/[email protected].\
5255
0\x05\x06\x04\0!golem:stt-azure/[email protected]\x04\0\x0b\x11\x01\0\x0bstt-lib\
53-
rary\x03\0\0\0G\x09producers\x01\x0cprocessed-by\x02\x0dwit-component\x070.220.1\
54-
\x10wit-bindgen-rust\x060.36.0";
56+
rary\x03\0\0\0G\x09producers\x01\x0cprocessed-by\x02\x0dwit-component\x070.227.1\
57+
\x10wit-bindgen-rust\x060.41.0";
5558
#[inline(never)]
5659
#[doc(hidden)]
5760
pub fn __link_custom_section_describing_imports() {

stt/deepgram/src/bindings.rs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
// Generated by `wit-bindgen` 0.36.0. DO NOT EDIT!
1+
// Generated by `wit-bindgen` 0.41.0. DO NOT EDIT!
22
// Options used:
33
// * runtime_path: "wit_bindgen_rt"
4-
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::types"
5-
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::transcription"
64
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::languages"
5+
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::transcription"
6+
// * with "golem:stt/[email protected]" = "golem_stt::golem::stt::types"
77
// * generate_unused_types
88
use golem_stt::golem::stt::types as __with_name0;
99
use golem_stt::golem::stt::languages as __with_name1;
1010
use golem_stt::golem::stt::transcription as __with_name2;
1111
#[cfg(target_arch = "wasm32")]
12-
#[link_section = "component-type:wit-bindgen:0.36.0:golem:[email protected]:stt-library:encoded world"]
12+
#[unsafe(
13+
link_section = "component-type:wit-bindgen:0.41.0:golem:[email protected]:stt-library:encoded world"
14+
)]
1315
#[doc(hidden)]
16+
#[allow(clippy::octal_escapes)]
1417
pub static __WIT_BINDGEN_COMPONENT_TYPE: [u8; 1909] = *b"\
1518
\0asm\x0d\0\x01\0\0\x19\x16wit-component-encoding\x04\0\x07\xf3\x0d\x01A\x02\x01\
1619
A\x0a\x01B\x1c\x01q\x0c\x0dinvalid-audio\x01s\0\x12unsupported-format\x01s\0\x14\
@@ -51,7 +54,7 @@ request\x1b\0\"\x04\0\x0atranscribe\x01#\x01p\x1b\x01j\x01!\x01\x05\x01@\x01\x08
5154
requests$\0%\x04\0\x0ftranscribe-many\x01&\x04\0\x1dgolem:stt/[email protected].\
5255
0\x05\x06\x04\0$golem:stt-deepgram/[email protected]\x04\0\x0b\x11\x01\0\x0bstt-\
5356
library\x03\0\0\0G\x09producers\x01\x0cprocessed-by\x02\x0dwit-component\x070.22\
54-
0.1\x10wit-bindgen-rust\x060.36.0";
57+
7.1\x10wit-bindgen-rust\x060.41.0";
5558
#[inline(never)]
5659
#[doc(hidden)]
5760
pub fn __link_custom_section_describing_imports() {

0 commit comments

Comments
 (0)