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: deploy-docker-manylinux2014_x86_64_cuda_12.3 | ||
on: | ||
push: | ||
branches: | ||
- main | ||
release: | ||
types: | ||
- published | ||
jobs: | ||
build-manylinux_x86_64_cuda_12.3: | ||
Check failure on line 12 in .github/workflows/deploy-docker-manylinux2014_x86_64_cuda_12.3.yml GitHub Actions / deploy-docker-manylinux2014_x86_64_cuda_12.3Invalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push manylinux2014_x86_64_cuda-12.3 | ||
id: docker_build | ||
uses: docker/build-push-action@v3 | ||
with: | ||
push: true | ||
file: ./docker/manylinux2014_x86_64_cuda_12.3/Dockerfile | ||
tags: sameli/manylinux2014_x86_64_cuda_12.3:latest | ||
- name: Image digest | ||
run: echo ${{ steps.docker_build.outputs.digest }} | ||
# test-cuda-12.3: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Install Snap | ||
# run: | | ||
# sudo apt update | ||
# sudo apt install snapd | ||
# | ||
# - name: Install Docker | ||
# run: | | ||
# sudo snap install docker | ||
# sudo groupadd -f docker | ||
# sudo usermod -aG docker $USER | ||
# newgrp docker | ||
# | ||
# - name: Pull Docker Image | ||
# run: docker pull sameli/manylinux2014_x86_64_cuda_12.3 | ||
# | ||
# - name: Run Docker Image | ||
# run: docker run -t sameli/manylinux2014_x86_64_cuda_12.3 nvcc --version |