mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-06 02:25:20 +00:00
527d5e4248
* use more recent version of maven-surefire-plugin * use more recent version of maven-surefire-plugin * higher debug level for troubleshooting ci issue * temporarily increase debug log to help troubleshoot * Use local instance of pet store service for unit test purpose * Add more logging to troubleshoot unit test failures * Add more logging to troubleshoot unit test failures * Add more logging to troubleshoot unit test failures * Add more logging to troubleshoot unit test failures * Add more logging to troubleshoot unit test failures * use random ID for Java unit test instead of fixed id * add code comments and specify URL for java unit test * reenable quiet argument * fix java unit test issues * fix java unit test issues * Revert "fix java unit test issues" This reverts commit e8508416ff0f2aeb568e3f916b013dc967390f74. * fix java unit test issues
83 lines
2.7 KiB
Bash
Executable File
83 lines
2.7 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# A bash script to run CircleCI node/test in parallel
|
|
#
|
|
|
|
NODE_INDEX=${CIRCLE_NODE_INDEX:-0}
|
|
|
|
set -e
|
|
|
|
function cleanup {
|
|
# Show logs of 'petstore.swagger' container to troubleshoot Unit Test failures, if any.
|
|
docker logs petstore.swagger # container name specified in circle.yml
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
|
|
if [ "$NODE_INDEX" = "1" ]; then
|
|
echo "Running node $NODE_INDEX to test 'samples.circleci' defined in pom.xml ..."
|
|
java -version
|
|
# Install golang version 1.14
|
|
go version
|
|
sudo mkdir /usr/local/go1.14
|
|
wget -c https://dl.google.com/go/go1.14.linux-amd64.tar.gz -O - | sudo tar -xz -C /usr/local/go1.14
|
|
export PATH="/usr/local/go1.14/go/bin:$PATH"
|
|
go version
|
|
|
|
mvn --quiet verify -Psamples.circleci -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
|
mvn --quiet javadoc:javadoc -Psamples.circleci -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
|
|
|
elif [ "$NODE_INDEX" = "2" ]; then
|
|
# run ensure-up-to-date sample script on SNAPSHOT version only
|
|
project_version=`mvn org.apache.maven.plugins:maven-help-plugin:3.1.0:evaluate -Dexpression=project.version -q -DforceStdout`
|
|
if [[ $project_version == *"-SNAPSHOT" ]]; then
|
|
echo "Running node $NODE_INDEX to test ensure-up-to-date"
|
|
java -version
|
|
|
|
# install elm-format
|
|
npm install -g elm-format
|
|
|
|
# clear any changes to the samples
|
|
git checkout -- .
|
|
|
|
# look for outdated samples
|
|
./bin/utils/ensure-up-to-date
|
|
fi
|
|
#elif [ "$NODE_INDEX" = "3" ]; then
|
|
echo "Running node $NODE_INDEX to test haskell"
|
|
# install haskell
|
|
curl -sSL https://get.haskellstack.org/ | sh
|
|
stack upgrade
|
|
stack --version
|
|
# install r
|
|
sudo sh -c 'echo "deb http://cran.rstudio.com/bin/linux/ubuntu trusty/" >> /etc/apt/sources.list'
|
|
gpg --keyserver keyserver.ubuntu.com --recv-key E084DAB9
|
|
gpg -a --export E084DAB9 | sudo apt-key add -
|
|
sudo apt-get update
|
|
sudo apt-get -y install r-base
|
|
R --version
|
|
# install curl
|
|
sudo apt-get -y build-dep libcurl4-gnutls-dev
|
|
sudo apt-get -y install libcurl4-gnutls-dev
|
|
|
|
# run integration tests
|
|
mvn --quiet verify -Psamples.misc -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
|
else
|
|
echo "Running node $NODE_INDEX to test 'samples.circleci.jdk7' defined in pom.xml ..."
|
|
sudo update-java-alternatives -s java-1.7.0-openjdk-amd64
|
|
java -version
|
|
|
|
# install dart2
|
|
sudo apt-get update
|
|
sudo apt-get install apt-transport-https
|
|
sudo sh -c 'wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -'
|
|
sudo sh -c 'wget -qO- https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list'
|
|
sudo apt-get update
|
|
sudo apt-get install dart
|
|
export PATH="$PATH:/usr/lib/dart/bin"
|
|
|
|
mvn --quiet verify -Psamples.circleci.jdk7 -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
|
fi
|
|
|
|
|