aboutsummaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorMikhail Goncharov <goncharov.mikhail@gmail.com>2023-09-12 12:11:18 +0200
committerMikhail Goncharov <goncharov.mikhail@gmail.com>2023-09-12 12:12:52 +0200
commitbcdba86f2537c2aa9fd55a288936c4c6c5a71325 (patch)
treeb641cc4b4400fef913b90f55ff5d3b54977f0608 /.ci
parent6d2aaa5fdb828614b20f79ebf6089c5a1babf5b5 (diff)
downloadllvm-bcdba86f2537c2aa9fd55a288936c4c6c5a71325.zip
llvm-bcdba86f2537c2aa9fd55a288936c4c6c5a71325.tar.gz
llvm-bcdba86f2537c2aa9fd55a288936c4c6c5a71325.tar.bz2
[ci] escape artifacts paths
That fixes issues like https://buildkite.com/llvm-project/github-pull-requests/builds/1350#018a8848-f70e-47f4-8aec-0bb48c49a7ca
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/generate-buildkite-pipeline-premerge14
-rwxr-xr-x.ci/generate-buildkite-pipeline-scheduled4
2 files changed, 9 insertions, 9 deletions
diff --git a/.ci/generate-buildkite-pipeline-premerge b/.ci/generate-buildkite-pipeline-premerge
index 7d14aed..e389df4 100755
--- a/.ci/generate-buildkite-pipeline-premerge
+++ b/.ci/generate-buildkite-pipeline-premerge
@@ -238,9 +238,9 @@ if [[ "${linux_projects}" != "" ]]; then
cat <<EOF
- label: ':linux: Linux x64'
artifact_paths:
- - artifacts/**/*
- - *_result.json
- - build/test-results.xml
+ - 'artifacts/**/*'
+ - '*_result.json'
+ - 'build/test-results.xml'
agents: ${LINUX_AGENTS}
retry:
automatic:
@@ -261,9 +261,9 @@ if [[ "${windows_projects}" != "" ]]; then
cat <<EOF
- label: ':windows: Windows x64'
artifact_paths:
- - artifacts/**/*
- - *_result.json
- - build/test-results.xml
+ - 'artifacts/**/*'
+ - '*_result.json'
+ - 'build/test-results.xml'
agents: ${WINDOWS_AGENTS}
retry:
automatic:
@@ -290,7 +290,7 @@ if [[ -n "${ph_target_phid:-}" ]]; then
- label: ':phabricator: update build status on Phabricator'
agents: ${SERVICE_AGENTS}
artifact_paths:
- - artifacts/**/*
+ - 'artifacts/**/*'
commands:
- export SRC=\$\${BUILDKITE_BUILD_PATH}/llvm-premerge-checks
- rm -rf \$\${SRC}
diff --git a/.ci/generate-buildkite-pipeline-scheduled b/.ci/generate-buildkite-pipeline-scheduled
index 6ad26ae..d5c7c59 100755
--- a/.ci/generate-buildkite-pipeline-scheduled
+++ b/.ci/generate-buildkite-pipeline-scheduled
@@ -42,7 +42,7 @@ steps:
- label: ':linux: Linux x64'
artifact_paths:
- - artifacts/**/*
+ - 'artifacts/**/*'
- '*_result.json'
- 'build/test-results.xml'
agents: ${LINUX_AGENTS}
@@ -61,7 +61,7 @@ steps:
- label: ':windows: Windows x64'
artifact_paths:
- - artifacts/**/*
+ - 'artifacts/**/*'
- '*_result.json'
- 'build/test-results.xml'
agents: ${WINDOWS_AGENTS}