Skip to content

Docker Image No Cuda #133

Docker Image No Cuda

Docker Image No Cuda #133

name: Docker Image No Cuda
on:
workflow_dispatch:
schedule:
- cron: "0 1 1 * *"
push:
branches: [master]
paths-ignore:
- "**.md"
jobs:
build:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
runs-on: ubuntu-20.04
steps:
- name: Maximize build space
run: |
sudo rm -rf /usr/local/lib/android
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
df -h
- uses: actions/checkout@v4
with:
lfs: true
submodules: recursive
# Ensure that the filesystem permissions are consistent across all umasks, all git checkouts:
- name: Set filesystems permissions
run: |
chmod -R g+w .
- name: Docker Login
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build Image
uses: docker/build-push-action@v5
with:
context: .
push: true
file: tools/docker/Dockerfile
build-args: |
INSTALL_CUDA=false
tags: utrarobosoccer/soccerbot:no_cuda
cache-from: type=registry,ref=utrarobosoccer/soccerbot:no_cuda
cache-to: type=inline