Bugfix for CUDA updater #9
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: Test of Docker images build | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- Dockerfile | |
- install.sh | |
- requirements.txt | |
- update.sh | |
- update_cuda.sh | |
- CUDA/Dockerfile | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- Dockerfile | |
- install.sh | |
- requirements.txt | |
- update.sh | |
- update_cuda.sh | |
- CUDA/Dockerfile | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag biniou:$(date +%s) | |
- name: Build the CUDA Docker image | |
run: docker build . --file CUDA/Dockerfile --tag biniou-cuda:$(date +%s) |