Skip to content

Commit

Permalink
[ci] escape artifacts paths
Browse files Browse the repository at this point in the history
  • Loading branch information
metaflow committed Sep 12, 2023
1 parent 6d2aaa5 commit bcdba86
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .ci/generate-buildkite-pipeline-premerge
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions .ci/generate-buildkite-pipeline-scheduled
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ steps:
- label: ':linux: Linux x64'
artifact_paths:
- artifacts/**/*
- 'artifacts/**/*'
- '*_result.json'
- 'build/test-results.xml'
agents: ${LINUX_AGENTS}
Expand All @@ -61,7 +61,7 @@ steps:
- label: ':windows: Windows x64'
artifact_paths:
- artifacts/**/*
- 'artifacts/**/*'
- '*_result.json'
- 'build/test-results.xml'
agents: ${WINDOWS_AGENTS}
Expand Down

0 comments on commit bcdba86

Please sign in to comment.