Docker Image No Cuda #162
This file contains hidden or 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: 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/login-action@v2.2.0 | |
| 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 |