From 8a3a552e07fa8254c54804addcab103aea89f985 Mon Sep 17 00:00:00 2001 From: AJ Schmidt Date: Thu, 29 Sep 2022 17:25:44 -0400 Subject: [PATCH] update GitHub Actions This commit includes the following changes: - removes the `name` fields from the jobs in the `nightly` and `branch` workflows so they're consistent with the `pr` workflow - removes `ci/upload_to_anaconda.sh` since it's not needed after the changes in https://github.com/rapidsai/gha-tools/pull/17 --- .github/workflows/branch-workflow.yaml | 3 --- .github/workflows/nightly-workflow.yaml | 5 ----- ci/upload_to_anaconda.sh | 7 ------- 3 files changed, 15 deletions(-) delete mode 100755 ci/upload_to_anaconda.sh diff --git a/.github/workflows/branch-workflow.yaml b/.github/workflows/branch-workflow.yaml index 4b2966268..198f9dd09 100644 --- a/.github/workflows/branch-workflow.yaml +++ b/.github/workflows/branch-workflow.yaml @@ -13,20 +13,17 @@ concurrency: jobs: cpp-build: - name: C++ build secrets: inherit uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-matrix-build.yaml@main with: build_type: branch python-build: - name: Python build needs: cpp-build secrets: inherit uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-matrix-build.yaml@main with: build_type: branch upload-conda: - name: Upload conda packages for branch builds needs: python-build secrets: inherit uses: rapidsai/shared-action-workflows/.github/workflows/conda-upload-packages.yaml@main diff --git a/.github/workflows/nightly-workflow.yaml b/.github/workflows/nightly-workflow.yaml index 9d0bffd43..bb4447e79 100644 --- a/.github/workflows/nightly-workflow.yaml +++ b/.github/workflows/nightly-workflow.yaml @@ -9,7 +9,6 @@ on: jobs: cpp-build: - name: C++ build secrets: inherit uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-matrix-build.yaml@main with: @@ -17,7 +16,6 @@ jobs: repo: rapidsai/rmm ref: ${{ inputs.REF }} cpp-tests: - name: C++ tests for PRs needs: cpp-build secrets: inherit uses: rapidsai/shared-action-workflows/.github/workflows/conda-cpp-tests.yaml@main @@ -26,7 +24,6 @@ jobs: repo: rapidsai/rmm ref: ${{ inputs.REF }} python-build: - name: Python build needs: cpp-build secrets: inherit uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-matrix-build.yaml@main @@ -35,7 +32,6 @@ jobs: repo: rapidsai/rmm ref: ${{ inputs.REF }} python-tests: - name: Python tests for PRs needs: python-build secrets: inherit uses: rapidsai/shared-action-workflows/.github/workflows/conda-python-tests.yaml@main @@ -44,7 +40,6 @@ jobs: repo: rapidsai/rmm ref: ${{ inputs.REF }} upload-conda: - name: Upload conda packages for branch builds needs: [python-tests, cpp-tests] secrets: inherit uses: rapidsai/shared-action-workflows/.github/workflows/conda-upload-packages.yaml@main diff --git a/ci/upload_to_anaconda.sh b/ci/upload_to_anaconda.sh deleted file mode 100755 index e53103fda..000000000 --- a/ci/upload_to_anaconda.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp) -PYTHON_CHANNEL=$(rapids-download-conda-from-s3 python) - -rapids-upload-to-anaconda "${CPP_CHANNEL}" -rapids-upload-to-anaconda "${PYTHON_CHANNEL}"