Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

linux-cuda-runtime-latest #114

linux-cuda-runtime-latest

linux-cuda-runtime-latest #114

name: linux-cuda-runtime-latest
on:
schedule:
- cron: "00 7 * * *" # runs at 07:00 UTC -> 12:00 PST every day
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
cuda-version: ["11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ./docker/runtime
push: true
tags: martinkim0/scvi-tools:py${{ matrix.python-version }}-cu${{ matrix.cuda-version }}-runtime-latest
build-args: |
PYTHON_VERSION=${{ matrix.python-version }}
CUDA_VERSION=${{ matrix.cuda-version }}
SCVI_TOOLS_VERSION=latest