forked from loafle/openapi-generator-original
* [dart-dio] Remove old Dart 1.x templates * [dart-dio] Initial version of a next-gen Dart Dio generator * Fix a couple readme links and examples * Fix import in testcase * Add integration tests to master POM * Run initial dart format and improve some base formatting * Generate docs * Use integer matchers in test for content-length * Separate more built_value specific files * Fix mustache partial path * Update pubspec template * Fix tests after mock lib updates * Generate with new built_value pre-release This solves the problem of not being able to serialize null. * Update built_value dependency * Regenerate after merge * Regenerate tests * Fix missing byte response cast * Update dio to 4.0.0-prev1 * Run format * Ignore unused imports in inheritance classes * Update mock test library * Update docs * Make a couple variables final * Update and freeze dio dependency * Update generator doc * Add a new option to post processes all dart output at once This is much faster than individual files. The committed samples should be formatted since Dart is very opinionated and it makes diffs in PRs much easier to read. Due to this, we also need to format in CI, otherwise there is a git diff. * Test some CI stuff
91 lines
2.9 KiB
Bash
Executable File
91 lines
2.9 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
|
|
|
|
function installDart {
|
|
# 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"
|
|
export DART_POST_PROCESS="dart format"
|
|
}
|
|
|
|
if [ "$NODE_INDEX" = "1" ]; then
|
|
echo "Running node $NODE_INDEX to test 'samples.circleci' defined in pom.xml ..."
|
|
java -version
|
|
|
|
mvn --no-snapshot-updates --quiet verify -Psamples.circleci -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
|
|
|
echo "show ivy2 cache"
|
|
ls -l /home/circleci/.ivy2/cache
|
|
|
|
elif [ "$NODE_INDEX" = "2" ]; then
|
|
installDart
|
|
|
|
# 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
|
|
|
|
# clear any changes to the samples
|
|
git checkout -- .
|
|
|
|
# look for outdated samples
|
|
./bin/utils/ensure-up-to-date
|
|
fi
|
|
echo "Running node $NODE_INDEX to test haskell"
|
|
# install haskell
|
|
curl -sSL https://get.haskellstack.org/ | sh
|
|
stack upgrade
|
|
stack --version
|
|
# prepare 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 --no-snapshot-updates --quiet verify -Psamples.misc -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
|
else
|
|
echo "Running node $NODE_INDEX to test 'samples.circleci.others' defined in pom.xml ..."
|
|
#sudo update-java-alternatives -s java-1.7.0-openjdk-amd64
|
|
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
|
|
|
|
installDart
|
|
|
|
mvn --no-snapshot-updates --quiet verify -Psamples.circleci.others -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
|
mvn --no-snapshot-updates --quiet javadoc:javadoc -Psamples.circleci -Dorg.slf4j.simpleLogger.defaultLogLevel=error
|
|
fi
|
|
|
|
|