mirror of
https://github.com/kasmtech/workspaces-images.git
synced 2024-11-07 08:44:07 +01:00
43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
#!/usr/bin/env python3
|
|
|
|
from jinja2 import Template
|
|
import yaml
|
|
import os
|
|
|
|
# Determine if this is a feature branch
|
|
fileLimits = True
|
|
scheduled = 'NO'
|
|
scheduleName = 'NO'
|
|
if os.getenv('SANITIZED_BRANCH').startswith('release') or os.getenv('SANITIZED_BRANCH') == 'develop':
|
|
fileLimits = False
|
|
if os.getenv('CI_PIPELINE_SOURCE') == 'schedule':
|
|
fileLimits = False
|
|
scheduled = 'YES'
|
|
if 'SCHEDULE_NAME' in os.environ:
|
|
scheduleName = os.getenv('SCHEDULE_NAME')
|
|
if os.getenv('USE_PRIVATE_IMAGES') == 1:
|
|
fileLimits = False
|
|
|
|
# Read yaml file with variables
|
|
with open("template-vars.yaml", 'r') as stream:
|
|
templateVars = yaml.safe_load(stream)
|
|
templateVars['KASM_RELEASE'] = os.getenv('KASM_RELEASE')
|
|
templateVars['TEST_INSTALLER'] = os.getenv('TEST_INSTALLER')
|
|
templateVars['USE_PRIVATE_IMAGES'] = os.getenv('USE_PRIVATE_IMAGES')
|
|
templateVars['BASE_TAG'] = os.getenv('BASE_TAG')
|
|
templateVars['FILE_LIMITS'] = fileLimits
|
|
templateVars['SCHEDULED'] = scheduled
|
|
templateVars['SCHEDULE_NAME'] = scheduleName
|
|
|
|
# Read template file
|
|
with open("gitlab-ci.template", 'r') as stream:
|
|
template = stream.read()
|
|
|
|
# Template the variables in
|
|
jinjaTemplate = Template(template)
|
|
gitlabCi = jinjaTemplate.render(templateVars)
|
|
|
|
# Write out the gitlab file
|
|
with open('../gitlab-ci.yml', 'w') as out:
|
|
out.write(gitlabCi + '\n')
|