mirror of
https://github.com/GoogleCloudPlatform/vertex-ai-samples.git
synced 2026-09-26 14:42:04 +00:00
* Create a function to get notebook python version for execution * Inject python version to yaml file * Fix python version references * Add python string to python version variable * add python version extraction script (untested) * Create a function to get notebook python version for execution * Inject python version to yaml file * Fix python version references * Add python string to python version variable * Remove one notebook condition * Remove extra check and use python 3 as default version * Use python3.9 as default version * Update python version notebook parser * Add python version to the notebook template * Fix bug * Update python version parser function * Add python version to a notebook for testing * Run linter * Use regex in python version parser function * Add new notebook for testing * Use better variable name * fix typo * Use f string instead + * Use python from env instead of using _PYTHON_VERSION * Use simpler regex * Add python version test notebook * Fixed a mistake * Updated notebook template with python version * Fixed python version format * Print log contents to stdout * Remove failing notebook * Run linter * Remove extra steps in the printed log * Edit comments * Run linter * Run linter * Revert test changes Co-authored-by: AG Sol <aarongabriel@google.com>
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
steps:
|
|
# Show the gcloud info and check if gcloud exists
|
|
- name: ${_PYTHON_IMAGE}
|
|
entrypoint: /bin/sh
|
|
args:
|
|
- -c
|
|
- 'gcloud config list --quiet'
|
|
# Check the Python version
|
|
- name: ${_PYTHON_IMAGE}
|
|
entrypoint: /bin/sh
|
|
args:
|
|
- -c
|
|
- ${_PYTHON_VERSION} .cloud-build/CheckPythonVersion.py -q
|
|
# Create a virtual environment
|
|
- name: ${_PYTHON_IMAGE}
|
|
entrypoint: /bin/sh
|
|
args:
|
|
- -c
|
|
- ${_PYTHON_VERSION} -m venv workspace/env
|
|
# Install Python dependencies
|
|
- name: ${_PYTHON_IMAGE}
|
|
entrypoint: /bin/sh
|
|
args:
|
|
- -c
|
|
- . workspace/env/bin/activate &&
|
|
python -m pip -q install -U pip &&
|
|
python -m pip -q install -U -r .cloud-build/requirements.txt
|
|
# Install Python dependencies and run testing script
|
|
- name: ${_PYTHON_IMAGE}
|
|
entrypoint: /bin/sh
|
|
args:
|
|
- -c
|
|
- |
|
|
. workspace/env/bin/activate &&
|
|
python .cloud-build/execute_notebook_cli.py --notebook_source "${_NOTEBOOK_GCS_URI}" --output_file_or_uri "${_NOTEBOOK_OUTPUT_GCS_URI}"
|
|
env:
|
|
- 'IS_TESTING=1'
|
|
timeout: 86400s
|