Skip to content

Commit

Permalink
[ci] Add manual workflow to upload files to CI bucket
Browse files Browse the repository at this point in the history
This adds a `workflow_dispatch` only GitHub Action that committers can
use to upload files to the CI bucket for use like in apache#11839
  • Loading branch information
driazati committed Jun 23, 2022
1 parent 6660e27 commit fe35b40
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/upload_ci_resource.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

# GH actions.
# We use it to cover windows and mac builds
# Jenkins is still the primary CI

name: Upload CI Resource

on:
workflow_dispatch:
inputs:
url:
description: 'URL of the file (e.g. "https://example.com/file.zip")'
required: true
type: string
sha256:
description: 'SHA256 of the file'
required: true
type: string
upload_path:
description: 'Path of the file in S3 (e.g. "my_folder/something.zip")'
required: true
type: string

concurrency:
group: upload-ci-resource
cancel-in-progress: true

jobs:
upload-ci-resource:
if: github.repository == 'apache/tvm'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Download item and upload to S3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AWS_ACCESS_KEY_ID: ${{ secrets.CI_RESOURCES_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.CI_RESOURCES_AWS_SECRET_ACCESS_KEY }}
URL: ${{ inputs.url }}
SHA256: ${{ inputs.sha256 }}
UPLOAD_PATH: ${{ inputs.upload_path }}
run: |
set -eux
curl -L -o downloaded_file "$URL"
echo "$SHA256 downloaded_file" | sha256sum --check
aws s3 cp downloaded_file "s3://tvm-ci-resources/$UPLOAD_PATH"
echo "The item is available at https://tvm-ci-resources.s3.us-west-2.amazonaws.com/$UPLOAD_PATH"

0 comments on commit fe35b40

Please sign in to comment.