From 4ede57a01fca1bba5c4143e091c16922443e58f2 Mon Sep 17 00:00:00 2001 From: Julio Perez Date: Mon, 16 Oct 2023 16:50:30 -0400 Subject: [PATCH 1/2] rapids infra ci activation --- .github/workflows/gpu-ci.yml | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/.github/workflows/gpu-ci.yml b/.github/workflows/gpu-ci.yml index 9b2334a95..152d3c490 100644 --- a/.github/workflows/gpu-ci.yml +++ b/.github/workflows/gpu-ci.yml @@ -2,17 +2,24 @@ name: GPU CI on: workflow_dispatch: - pull_request: - branches: [main] - types: [opened, synchronize, reopened] - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true + push: + branches: + - main + - "pull-request/[0-9]+" + tags: + - "v[0-9]+.[0-9]+.[0-9]+" jobs: - gpu-ci-premerge: - runs-on: 1GPU + gpu-ci: + runs-on: linux-amd64-gpu-p100-latest-1 + container: + image: nvcr.io/nvstaging/merlin/merlin-ci-runner:latest + env: + NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }} + options: --shm-size=1G + credentials: + username: $oauthtoken + password: ${{ secrets.NGC_TOKEN }} steps: - uses: actions/checkout@v3 @@ -27,4 +34,4 @@ jobs: raw=$(git branch -r --contains ${{ github.ref_name }}) branch=${raw/origin\/} fi - cd ${{ github.workspace }}; tox -e test-gpu -- $branch + tox -e test-gpu -- $branch From 8f281cd68dc9e4a45c22891ad7ab98b6049b5784 Mon Sep 17 00:00:00 2001 From: Julio Perez Date: Mon, 16 Oct 2023 18:57:15 -0400 Subject: [PATCH 2/2] change name premerge --- .github/workflows/gpu-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gpu-ci.yml b/.github/workflows/gpu-ci.yml index 152d3c490..67e310435 100644 --- a/.github/workflows/gpu-ci.yml +++ b/.github/workflows/gpu-ci.yml @@ -10,7 +10,7 @@ on: - "v[0-9]+.[0-9]+.[0-9]+" jobs: - gpu-ci: + gpu-ci-premerge: runs-on: linux-amd64-gpu-p100-latest-1 container: image: nvcr.io/nvstaging/merlin/merlin-ci-runner:latest