mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 02:55:19 +00:00
5ffc297a69
* fix ruby script path in ensure-up-to-date * bin/ruby-client-petstore.sh
49 lines
1.9 KiB
Bash
Executable File
49 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
# this bash script run the scripts for the 'mature' generators
|
|
# it ensures that all changes are committed into the 'samples/' folder
|
|
|
|
echo "# START SCRIPT: $0"
|
|
|
|
echo "IMPORTANT: this script should be run by the CI (e.g. Shippable) to ensure that the 'samples/' folder is up to date."
|
|
echo "Please press CTRL+C to stop or the script will continue in 5 seconds."
|
|
|
|
sleep 5
|
|
|
|
# LIST OF SCRIPTS:
|
|
./bin/ruby-client-petstore.sh > /dev/null 2>&1
|
|
./bin/java-petstore-all.sh > /dev/null 2>&1
|
|
./bin/java-jaxrs-petstore-server-all.sh > /dev/null 2>&1
|
|
./bin/spring-all-pestore.sh > /dev/null 2>&1
|
|
./bin/kotlin-client-petstore.sh > /dev/null 2>&1
|
|
./bin/kotlin-client-string.sh > /dev/null 2>&1
|
|
./bin/kotlin-client-threetenbp.sh > /dev/null 2>&1
|
|
./bin/kotlin-server-petstore.sh > /dev/null 2>&1
|
|
./bin/php-petstore.sh > /dev/null 2>&1
|
|
./bin/php-silex-petstore-server.sh > /dev/null 2>&1
|
|
./bin/php-symfony-petstore.sh > /dev/null 2>&1
|
|
./bin/php-lumen-petstore-server.sh > /dev/null 2>&1
|
|
./bin/php-slim-server-petstore.sh > /dev/null 2>&1
|
|
./bin/php-ze-ph-petstore-server.sh > /dev/null 2>&1
|
|
./bin/openapi3/php-petstore.sh > /dev/null 2>&1
|
|
./bin/typescript-angular-petstore-all.sh > /dev/null 2>&1
|
|
./bin/typescript-fetch-petstore-all.sh > /dev/null 2>&1
|
|
./bin/typescript-node-petstore-all.sh > /dev/null 2>&1
|
|
./bin/typescript-inversify-petstore.sh > /dev/null 2>&1
|
|
./bin/rust-server-petstore.sh > /dev/null 2>&1
|
|
./bin/openapi3/haskell-http-client-petstore.sh > /dev/null 2>&1
|
|
./bin/csharp-petstore.sh > /dev/null 2>&1
|
|
|
|
# Check:
|
|
if [ -n "$(git status --porcelain)" ]; then
|
|
echo "UNCOMMITTED CHANGES ERROR"
|
|
echo "There are uncommitted changes in working tree after execution of 'bin/ensure-up-to-date'"
|
|
echo "Perform git diff"
|
|
git --no-pager diff
|
|
echo "Perform git status"
|
|
git status
|
|
echo "Please run 'bin/utils/ensure-up-to-date' locally and commit changes (UNCOMMITTED CHANGES ERROR)"
|
|
exit 1
|
|
else
|
|
echo "Git working tree is clean"
|
|
fi
|