2020-05-14 12:57:38 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright 2020 Google LLC
|
|
|
|
#
|
|
|
|
# Licensed under the the Apache License v2.0 with LLVM Exceptions (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# https://llvm.org/LICENSE.txt
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
import os
|
|
|
|
import yaml
|
2021-05-03 21:07:00 +02:00
|
|
|
from buildkite_utils import annotate, feedback_url, set_metadata
|
2020-05-14 12:57:38 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
diff_id = os.getenv("ph_buildable_diff")
|
2020-07-23 19:55:04 +02:00
|
|
|
log_level = os.getenv('ph_log_level', 'INFO')
|
|
|
|
base_commit = os.getenv('ph_base_commit', 'auto')
|
|
|
|
run_build = os.getenv('ph_skip_build') is None
|
2020-10-02 14:04:29 +02:00
|
|
|
trigger = os.getenv('ph_trigger_pipeline')
|
2021-05-03 21:07:00 +02:00
|
|
|
|
|
|
|
set_metadata('ph_buildable_diff', os.getenv("ph_buildable_diff"))
|
|
|
|
set_metadata('ph_buildable_revision', os.getenv('ph_buildable_revision'))
|
|
|
|
set_metadata('ph_build_id', os.getenv("ph_build_id"))
|
2020-10-02 14:04:29 +02:00
|
|
|
if trigger is None:
|
|
|
|
trigger = 'premerge-checks'
|
|
|
|
|
2020-05-14 12:57:38 +02:00
|
|
|
steps = []
|
2020-10-02 16:18:33 +02:00
|
|
|
steps.append({
|
2020-06-29 12:17:03 +02:00
|
|
|
'label': 'create branch',
|
|
|
|
'key': 'create-branch',
|
2020-10-12 16:25:23 +02:00
|
|
|
'commands': [
|
2020-11-25 15:29:50 +01:00
|
|
|
'pip install -q -r scripts/requirements.txt',
|
2020-10-12 16:25:23 +02:00
|
|
|
'scripts/apply_patch.sh'
|
|
|
|
],
|
2021-04-26 20:10:15 +02:00
|
|
|
'agents': {'queue': 'service'},
|
2020-06-29 12:17:03 +02:00
|
|
|
'timeout_in_minutes': 20,
|
2020-07-23 19:55:04 +02:00
|
|
|
'env': {
|
|
|
|
'LOG_LEVEL': log_level,
|
|
|
|
'BASE_COMMIT': base_commit,
|
|
|
|
}
|
2020-10-02 16:18:33 +02:00
|
|
|
})
|
2020-07-23 19:55:04 +02:00
|
|
|
if run_build:
|
2020-10-02 14:04:29 +02:00
|
|
|
trigger_build_step = {
|
|
|
|
'trigger': trigger,
|
|
|
|
'label': ':rocket: build and test',
|
|
|
|
'async': False,
|
|
|
|
'depends_on': 'create-branch',
|
|
|
|
'build': {
|
|
|
|
'branch': f'phab-diff-{diff_id}',
|
|
|
|
'env': {},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for e in os.environ:
|
|
|
|
if e.startswith('ph_'):
|
|
|
|
trigger_build_step['build']['env'][e] = os.getenv(e)
|
|
|
|
# Set scripts source from the current build if it's not yet defined.
|
|
|
|
if 'ph_scripts_refspec' not in trigger_build_step['build']['env']:
|
|
|
|
trigger_build_step['build']['env']['ph_scripts_refspec'] = '${BUILDKITE_BRANCH}'
|
|
|
|
steps.append(trigger_build_step)
|
2020-05-14 12:57:38 +02:00
|
|
|
print(yaml.dump({'steps': steps}))
|