Spaces:
Runtime error
Runtime error
| name: 'build container images' | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - '*' | |
| concurrency: | |
| group: ci-${{ github.head_ref || github.ref }}-${{ github.repository }} | |
| cancel-in-progress: true | |
| jobs: | |
| docker: | |
| strategy: | |
| matrix: | |
| include: | |
| - build-type: '' | |
| platforms: 'linux/amd64,linux/arm64' | |
| tag-latest: 'auto' | |
| tag-suffix: '' | |
| ffmpeg: '' | |
| - build-type: 'cublas' | |
| cuda-major-version: 11 | |
| cuda-minor-version: 7 | |
| platforms: 'linux/amd64' | |
| tag-latest: 'false' | |
| tag-suffix: '-cublas-cuda11' | |
| ffmpeg: '' | |
| - build-type: 'cublas' | |
| cuda-major-version: 12 | |
| cuda-minor-version: 1 | |
| platforms: 'linux/amd64' | |
| tag-latest: 'false' | |
| tag-suffix: '-cublas-cuda12' | |
| ffmpeg: '' | |
| - build-type: '' | |
| platforms: 'linux/amd64,linux/arm64' | |
| tag-latest: 'false' | |
| tag-suffix: '-ffmpeg' | |
| ffmpeg: 'true' | |
| - build-type: 'cublas' | |
| cuda-major-version: 11 | |
| cuda-minor-version: 7 | |
| platforms: 'linux/amd64' | |
| tag-latest: 'false' | |
| tag-suffix: '-cublas-cuda11-ffmpeg' | |
| ffmpeg: 'true' | |
| - build-type: 'cublas' | |
| cuda-major-version: 12 | |
| cuda-minor-version: 1 | |
| platforms: 'linux/amd64' | |
| tag-latest: 'false' | |
| tag-suffix: '-cublas-cuda12-ffmpeg' | |
| ffmpeg: 'true' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Docker meta | |
| id: meta | |
| uses: docker/metadata-action@v4 | |
| with: | |
| images: quay.io/go-skynet/local-ai | |
| tags: | | |
| type=ref,event=branch | |
| type=semver,pattern={{raw}} | |
| type=sha | |
| flavor: | | |
| latest=${{ matrix.tag-latest }} | |
| suffix=${{ matrix.tag-suffix }} | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@master | |
| with: | |
| platforms: all | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@master | |
| - name: Login to DockerHub | |
| if: github.event_name != 'pull_request' | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: quay.io | |
| username: ${{ secrets.LOCALAI_REGISTRY_USERNAME }} | |
| password: ${{ secrets.LOCALAI_REGISTRY_PASSWORD }} | |
| - name: Build and push | |
| uses: docker/build-push-action@v4 | |
| with: | |
| builder: ${{ steps.buildx.outputs.name }} | |
| build-args: | | |
| BUILD_TYPE=${{ matrix.build-type }} | |
| CUDA_MAJOR_VERSION=${{ matrix.cuda-major-version }} | |
| CUDA_MINOR_VERSION=${{ matrix.cuda-minor-version }} | |
| FFMPEG=${{ matrix.ffmpeg }} | |
| context: . | |
| file: ./Dockerfile | |
| platforms: ${{ matrix.platforms }} | |
| push: ${{ github.event_name != 'pull_request' }} | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |