Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion CI/circle_parallel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,22 @@ elif [ "$NODE_INDEX" = "3" ]; then
else
echo "Running node $NODE_INDEX ..."
java -version
./mvnw clean install
#./mvnw clean install

sudo apt-get update
sudo apt-get install -y apt-transport-https software-properties-common
# Add CRAN repository for R 4.x
#sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
sudo add-apt-repository 'deb https://cloud.r-project.org jammy-cran40/'
sudo apt-get update
sudo apt-get install -y r-base

#sudo apt install r-base r-base-dev -y
sudo apt-get install r-base-core libssl-dev libcurl4-openssl-dev -y # for httr

R version

(cd samples/client/petstore/R && mvn integration-test)
#(cd samples/client/petstore/R-httr2 && mvn integration-test)

fi
Loading