Skip to content

Commit

Permalink
add integration to rapids ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jperez999 committed Oct 16, 2023
1 parent ade744b commit a52af8f
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/gpu-ci-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,23 @@ name: GPU NOTEBOOK CI
on:
workflow_dispatch:
push:
branches: [main]
branches:
- main
- "pull-request/[0-9]+"
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
pull_request:
branches: [main]
types: [opened, synchronize, reopened]

jobs:
gpu-ci-integration:
runs-on: 1GPU
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
Expand All @@ -29,4 +36,4 @@ jobs:
# find the release branch that we're pointing at
branch=$(git branch -r --contains ${{ github.ref_name }} --list '*release*' --format "%(refname:short)" | sed -e 's/^origin\///')
fi
cd ${{ github.workspace }}; tox -e test-gpu-integration -- $branch
tox -e test-gpu-integration -- $branch

0 comments on commit a52af8f

Please sign in to comment.