2025-01-17 08:25:04 +00:00
|
|
|
#!groovy
|
|
|
|
|
|
|
|
|
|
library 'first-class-pipeline'
|
|
|
|
|
def configurations = [:]
|
2025-01-21 09:01:31 +00:00
|
|
|
configurations.put('SERVICE_NAME', 'magicleaps')
|
|
|
|
|
configurations.put('SERVICE_LANG', 'Python')
|
|
|
|
|
configurations.put('SERVICE_GIT_REPO', '')
|
|
|
|
|
configurations.put('SERVICE_GIT_BRANCH', 'master')
|
|
|
|
|
configurations.put('ENVIRONMENT_SLUG', 'alpha')
|
|
|
|
|
|
|
|
|
|
configurations.put('PY_DEPENDENCIES_MANAGER', 'PIP')
|
|
|
|
|
configurations.put('REQUIREMENTS_FILE_PATH', 'requirements.txt')
|
2025-01-17 08:25:04 +00:00
|
|
|
|
|
|
|
|
pipelineCall(configurations)
|