From 293bdbcf1e18800b5e628d6d7f369fe612de4bb7 Mon Sep 17 00:00:00 2001 From: "victoria.casasampere@beethedata.com" Date: Fri, 27 Dec 2024 19:57:02 +0100 Subject: [PATCH] Fix pom path, ensure cargo is present --- CI/circle_parallel.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CI/circle_parallel.sh b/CI/circle_parallel.sh index e633f3cf168a..0d02dce87a7c 100755 --- a/CI/circle_parallel.sh +++ b/CI/circle_parallel.sh @@ -17,6 +17,7 @@ if [ "$NODE_INDEX" = "1" ]; then # install rust curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + source "$HOME/.cargo/env" echo "Testing perl" (cd samples/client/petstore/perl && /bin/bash ./test.bash) @@ -28,7 +29,7 @@ if [ "$NODE_INDEX" = "1" ]; then (cd samples/client/petstore/ruby-autoload && mvn integration-test) echo "Testing rust" - (cd samples/server/petstore/rust-axum/output/rust-axum-oneof && mvn integration-test) + (cd samples/server/petstore/rust-axum && mvn integration-test) elif [ "$NODE_INDEX" = "2" ]; then echo "Running node $NODE_INDEX to test Go"