@@ -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
0 commit comments