Skip to content

Commit

Permalink
ARROW-7897: [Packaging] Temporarily disable artifact uploading until …
Browse files Browse the repository at this point in the history
…we fix the deployment issues

This will filter out the false negatives from the nightly build report until we fix the deployment errors in #6458

Closes #6468 from kszucs/turn-off-crossbow-uploading and squashes the following commits:

ec6eb26 <Krisztián Szűcs> turn off uploading

Authored-by: Krisztián Szűcs <szucs.krisztian@gmail.com>
Signed-off-by: Neal Richardson <neal.p.richardson@gmail.com>
  • Loading branch information
kszucs authored and nealrichardson committed Feb 22, 2020
1 parent 3f24fcb commit c83e82d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions dev/tasks/crossbow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1528,10 +1528,13 @@ def asset_callback(task_name, task, asset):
help='File pattern to upload as assets')
@click.pass_obj
def upload_artifacts(obj, tag, sha, patterns):
queue = obj['queue']
queue.github_overwrite_release_assets(
tag_name=tag, target_commitish=sha, patterns=patterns
)
# queue = obj['queue']
# queue.github_overwrite_release_assets(
# tag_name=tag, target_commitish=sha, patterns=patterns
# )
# HACK: turn off artifact uploading globally until we resolve the github
# API related issues in https://github.com/apache/arrow/pull/6458
return


if __name__ == '__main__':
Expand Down

0 comments on commit c83e82d

Please sign in to comment.