1
0
Fork 0

Move the pipeline generation scripts outside of libc++

This commit is contained in:
Louis Dionne 2023-07-12 11:00:48 -04:00 committed by Mikhail Goncharov
parent ceb00be7d9
commit a725f9ea89
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ import os
import yaml import yaml
steps_generators = [ steps_generators = [
'${BUILDKITE_BUILD_CHECKOUT_PATH}/libcxx/utils/ci/buildkite-pipeline-snapshot.sh', '${BUILDKITE_BUILD_CHECKOUT_PATH}/.ci/generate-buildkite-pipeline-scheduled',
] ]
if __name__ == '__main__': if __name__ == '__main__':

View file

@ -26,7 +26,7 @@ from steps import generic_linux, generic_windows, from_shell_output, checkout_sc
import yaml import yaml
steps_generators = [ steps_generators = [
'${BUILDKITE_BUILD_CHECKOUT_PATH}/libcxx/utils/ci/buildkite-pipeline-premerge.sh', '${BUILDKITE_BUILD_CHECKOUT_PATH}/.ci/generate-buildkite-pipeline-premerge',
] ]
if __name__ == '__main__': if __name__ == '__main__':