14 lines
466 B
Groovy
14 lines
466 B
Groovy
#!groovy
|
|
|
|
library 'first-class-pipeline'
|
|
def configurations = [:]
|
|
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')
|
|
|
|
pipelineCall(configurations) |