New Agent: tauHK #1849
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 Docker Build | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**.rst' | |
| - '**.md' | |
| - '.flake8' | |
| - '.pre-commit-config.yaml' | |
| - '.readthedocs.yaml' | |
| - '.github/dependabot.yml' | |
| jobs: | |
| build: | |
| name: test image build | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Fetch all history for all tags and branches | |
| - name: clone socs | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| # Dockerize | |
| - name: Check docker version | |
| run: | | |
| docker --version | |
| docker compose version | |
| - name: Build base docker image | |
| run: | | |
| docker build -t socs:latest . | |
| - name: Build additional docker images | |
| run: | | |
| docker compose build |