mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 20:50:55 +00:00
* python: improve type generation with more specific typing * Annotate function parameters * Remove unused imports * remove unused files * remove temporary hack * remove lock file * fix Annotated import * support Python 3.7 * Regenerate code with typing-extensions * Fix setup.py * More Pydantic v2 compatibility * depend on pydantic v2 * fix client_echo tests * fix JSON serialization * Fix references * Skip circular dependency tests for now * Temporarily hide the "float" property The "float" property aliases the "float" type and completely breaks the model: all the properties that were "float" now become the type of the "float" property instead. * Fix errors * Import Literal from typing_extensions * Fix GitHub Action workflows * Fix Python 3.7 failure * Fix quotes * Apply suggestions from code review * Fix tests * split model imports from other modules imports * fix workflow * Comment the array unique items convertion, remove set translation * Replace alias usage
66 lines
1.8 KiB
Bash
Executable File
66 lines
1.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# this bash script generates all samples.
|
|
# it ensures that all changes are committed into the 'samples/' folder
|
|
# shellcheck disable=SC2155
|
|
declare cwd="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
declare root="$(cd "$cwd" && cd ../ && pwd)"
|
|
declare executable="${root}/modules/openapi-generator-cli/target/openapi-generator-cli.jar"
|
|
|
|
if [ ! -f "$executable" ]; then
|
|
(cd "${root}" && mvn -B --no-snapshot-updates clean package -DskipTests=true -Dmaven.javadoc.skip=true -Djacoco.skip=true)
|
|
fi
|
|
|
|
export JAVA_OPTS="${JAVA_OPTS} -ea -server -Duser.timezone=UTC"
|
|
export BATCH_OPTS="${BATCH_OPTS:-}"
|
|
|
|
files=()
|
|
args=()
|
|
end_option=false
|
|
while [[ $# -gt 0 ]]; do
|
|
key="$1"
|
|
if [ "--" == "$key" ]; then
|
|
end_option=true
|
|
else
|
|
if [[ "$end_option" = true ]]; then
|
|
args+=("$1")
|
|
else
|
|
files+=("$1")
|
|
fi
|
|
fi
|
|
shift
|
|
done
|
|
|
|
header="# START SCRIPT: $0
|
|
This script generates all configs under bin/configs by default.
|
|
You may generate a targeted script or set of scripts using glob patterns.
|
|
|
|
For example:
|
|
$0 bin/configs/java-*
|
|
|
|
You may generate a single config with additional options if you use -- to
|
|
separate the single config file from the generator arguments.
|
|
|
|
For example:
|
|
$0 bin/configs/java-vertx.yaml -- --global-property debugModels=true
|
|
|
|
"
|
|
|
|
echo "$header"
|
|
|
|
if [[ ${#files[@]} -eq 1 && "${files[0]}" != *'*'* ]]; then
|
|
# shellcheck disable=SC2086
|
|
# shellcheck disable=SC2068
|
|
java ${JAVA_OPTS} -jar "$executable" generate -c ${files[0]} ${args[@]}
|
|
else
|
|
echo "Please press CTRL+C to stop or the script will continue in 5 seconds."
|
|
#sleep 5
|
|
if [ ${#files[@]} -eq 0 ]; then
|
|
files=("${root}"/bin/configs/*.yaml)
|
|
fi
|
|
|
|
# shellcheck disable=SC2086
|
|
# shellcheck disable=SC2068
|
|
java ${JAVA_OPTS} -jar "$executable" batch ${BATCH_OPTS} --includes-base-dir "${root}" --fail-fast -- ${files[@]}
|
|
fi
|
|
|