-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ARROW-14408: [Packaging][Crossbow] Option for skipping artifact pattern validation #11490
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1, merging on green
|
Benchmark runs are scheduled for baseline = 47f9176 and contender = eee80f1. eee80f1 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Benchmark runs are scheduled for baseline = 47f9176 and contender = eee80f1. eee80f1 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
1 similar comment
Benchmark runs are scheduled for baseline = 47f9176 and contender = eee80f1. eee80f1 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Benchmark runs are scheduled for baseline = 47f9176 and contender = eee80f1. eee80f1 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
…rn validation Only download the artifacts belonging to the `manylinux` tasks but without validating the expected artifact names: ``` archery crossbow download-artifacts --no-fetch release-6.0.0-rc1-0 --task-filter "*manylinux*" --skip-pattern-validation ``` `--task-filter`: useful to restrict the download script for certain tasks `--skip-pattern-validation`: occasionally useful, like in the current case where the manylinux2014 wheels names now contain two platform tags cc @kou Closes apache#11490 from kszucs/crossbow-pattern-validation Authored-by: Krisztián Szűcs <szucs.krisztian@gmail.com> Signed-off-by: Krisztián Szűcs <szucs.krisztian@gmail.com>
Only download the artifacts belonging to the
manylinux
tasks but without validating the expected artifact names:--task-filter
: useful to restrict the download script for certain tasks--skip-pattern-validation
: occasionally useful, like in the current case where the manylinux2014 wheels names now contain two platform tagscc @kou