set default number of threads to 2 , 8 is too many parallelism #48
This file contains 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: Build and push to GHCR | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
build-and-push-to-ghcr: | |
runs-on: ubuntu-22.04 | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: 'Login to GitHub Container Registry' | |
run: | | |
set -xe | |
docker login --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} ghcr.io | |
- name: Build only for PR | |
if: github.ref != 'refs/heads/main' | |
uses: docker/build-push-action@v5 | |
with: | |
context: "{{defaultContext}}:server" | |
file: Dockerfile | |
push: false # Do not push image for PR | |
cache-from: type=registry,ref=ghcr.io/coqui-ai/xtts-streaming-server:cache-latest;type=registry,ref=ghcr.io/coqui-ai/xtts-streaming-server:cache-pr-${{ github.event.number }} | |
cache-to: type=registry,ref=ghcr.io/coqui-ai/xtts-streaming-server:cache-pr-${{ github.event.number }} | |
- name: Build and Push image | |
if: github.ref == 'refs/heads/main' | |
uses: docker/build-push-action@v5 | |
with: | |
context: "{{defaultContext}}:server" | |
file: Dockerfile | |
push: true # Push if merged | |
cache-from: type=registry,ref=ghcr.io/coqui-ai/xtts-streaming-server:cache-latest | |
cache-to: type=registry,ref=ghcr.io/coqui-ai/xtts-streaming-server:cache-latest | |
tags: ghcr.io/coqui-ai/xtts-streaming-server:latest, ghcr.io/coqui-ai/xtts-streaming-server:main-${{ github.sha }} | |
#build-args: | |
- name: 'Remove cache' | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
sudo rm -rf "/usr/local/share/boost" | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
- name: Build and Push image cuda 11.8 | |
if: github.ref == 'refs/heads/main' | |
uses: docker/build-push-action@v5 | |
with: | |
context: "{{defaultContext}}:server" | |
file: Dockerfile.cuda118 | |
push: true # Push if merged | |
cache-from: type=registry,ref=ghcr.io/coqui-ai/xtts-streaming-server:cache-latest-cuda118 | |
cache-to: type=registry,ref=ghcr.io/coqui-ai/xtts-streaming-server:cache-latest-cuda118 | |
tags: ghcr.io/coqui-ai/xtts-streaming-server:latest-cuda118, ghcr.io/coqui-ai/xtts-streaming-server:main-cuda118-${{ github.sha }} | |
#build-args: |