-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathgen-bundle.sh
executable file
·31 lines (28 loc) · 1.07 KB
/
gen-bundle.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
# Check if the version argument is provided
if [ $# -lt 1 ]; then
echo "Usage: $0 <version>"
# exit 1
fi
# Set the provided version as an environment variable
export BUNDLE_CODE_GEN_CLI_VERSION="$1"
rm -rf .databricks/bin/cli/
python tools/install_databricks_cli.py
python tools/modify_schema.py
datamodel-codegen --input brickflow/bundles/transformed_schema.json \
--use-title-as-name \
--disable-appending-item-suffix \
--collapse-root-models \
--capitalise-enum-members \
--enum-field-as-literal all \
--input-file-type jsonschema \
--output brickflow/bundles/model.py
echo "✅ Code generation completed successfully!"
python tools/modify_model.py
echo "✅ Updated and patched model successfully!"
echo "# generated with Databricks CLI Version: $(.databricks/bin/cli/*/databricks --version)" | \
cat - brickflow/bundles/model.py > /tmp/codegen && \
mv /tmp/codegen brickflow/bundles/model.py
echo "✅ Modified the front matter of the script!"
python brickflow/bundles/model.py # validate python file
echo "✅ Validated the file is proper python code!"