fix dependencies in docs build (#1236) #668
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GPU CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- "pull-request/[0-9]+" | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
jobs: | |
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 | |
with: | |
fetch-depth: 0 | |
- name: Run tests | |
run: | | |
nvidia-smi | |
pip install tox | |
ref_type=${{ github.ref_type }} | |
branch=main | |
if [[ $ref_type == "tag"* ]] | |
then | |
git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +refs/heads/release*:refs/remotes/origin/release* | |
branch=$(git branch -r --contains ${{ github.ref_name }} --list '*release*' --format "%(refname:short)" | sed -e 's/^origin\///') | |
fi | |
if [[ "${{ github.ref }}" != 'refs/heads/main' ]]; then | |
extra_pytest_markers="and changed" | |
fi | |
PYTEST_MARKERS="unit and not (examples or integration or notebook) and (singlegpu or not multigpu) $extra_pytest_markers" MERLIN_BRANCH=$branch COMPARE_BRANCH=${{ github.base_ref }} tox -e gpu | |
gpu-ci-examples: | |
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 | |
with: | |
fetch-depth: 0 | |
- name: Run tests | |
run: | | |
pip install tox | |
ref_type=${{ github.ref_type }} | |
branch=main | |
if [[ $ref_type == "tag"* ]] | |
then | |
git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +refs/heads/release*:refs/remotes/origin/release* | |
branch=$(git branch -r --contains ${{ github.ref_name }} --list '*release*' --format "%(refname:short)" | sed -e 's/^origin\///') | |
fi | |
if [[ "${{ github.ref }}" != 'refs/heads/main' ]]; then | |
extra_pytest_markers="and changed" | |
fi | |
PYTEST_MARKERS="(examples or notebook) $extra_pytest_markers" MERLIN_BRANCH=$branch COMPARE_BRANCH=${{ github.base_ref }} tox -e gpu |