From c858a9a12bb0cc2db587cd49d39a545f669a88c1 Mon Sep 17 00:00:00 2001 From: Graham Markall Date: Tue, 23 Jul 2024 10:52:36 +0100 Subject: [PATCH] Remove AWS from steps --- .github/workflows/conda-python-build.yaml | 5 ----- .github/workflows/conda-python-tests.yaml | 5 ----- .github/workflows/wheels-build.yaml | 5 ----- .github/workflows/wheels-test.yaml | 5 ----- 4 files changed, 20 deletions(-) diff --git a/.github/workflows/conda-python-build.yaml b/.github/workflows/conda-python-build.yaml index 4cb9c02..7c88066 100644 --- a/.github/workflows/conda-python-build.yaml +++ b/.github/workflows/conda-python-build.yaml @@ -94,11 +94,6 @@ jobs: env: RAPIDS_BUILD_TYPE: ${{ inputs.build_type }} steps: - - uses: aws-actions/configure-aws-credentials@v4 - with: - role-to-assume: ${{ vars.AWS_ROLE_ARN }} - aws-region: ${{ vars.AWS_REGION }} - role-duration-seconds: 43200 # 12h - uses: actions/checkout@v4 with: repository: ${{ inputs.repo }} diff --git a/.github/workflows/conda-python-tests.yaml b/.github/workflows/conda-python-tests.yaml index 53ff284..a3aa46f 100644 --- a/.github/workflows/conda-python-tests.yaml +++ b/.github/workflows/conda-python-tests.yaml @@ -115,11 +115,6 @@ jobs: RAPIDS_BUILD_TYPE: ${{ inputs.build_type }} NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }} steps: - - uses: aws-actions/configure-aws-credentials@v4 - with: - role-to-assume: ${{ vars.AWS_ROLE_ARN }} - aws-region: ${{ vars.AWS_REGION }} - role-duration-seconds: 43200 # 12h - uses: actions/checkout@v4 with: repository: ${{ inputs.repo }} diff --git a/.github/workflows/wheels-build.yaml b/.github/workflows/wheels-build.yaml index a0b3bab..03eab79 100644 --- a/.github/workflows/wheels-build.yaml +++ b/.github/workflows/wheels-build.yaml @@ -117,11 +117,6 @@ jobs: RAPIDS_BUILD_TYPE: ${{ inputs.build_type }} steps: - - uses: aws-actions/configure-aws-credentials@v4 - with: - role-to-assume: ${{ vars.AWS_ROLE_ARN }} - aws-region: ${{ vars.AWS_REGION }} - role-duration-seconds: 43200 # 12h - name: checkout code repo uses: actions/checkout@v4 with: diff --git a/.github/workflows/wheels-test.yaml b/.github/workflows/wheels-test.yaml index 411fcd9..2fbd694 100644 --- a/.github/workflows/wheels-test.yaml +++ b/.github/workflows/wheels-test.yaml @@ -124,11 +124,6 @@ jobs: NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }} # GPU jobs must set this container env variable RAPIDS_BUILD_TYPE: ${{ inputs.build_type }} steps: - - uses: aws-actions/configure-aws-credentials@v4 - with: - role-to-assume: ${{ vars.AWS_ROLE_ARN }} - aws-region: ${{ vars.AWS_REGION }} - role-duration-seconds: 43200 # 12h - name: Run nvidia-smi to make sure GPU is working run: nvidia-smi