Skip to content

Commit 588ef03

Browse files
committed
Fix merge conflict
2 parents dca28c0 + 311ee64 commit 588ef03

File tree

6 files changed

+23
-5
lines changed

6 files changed

+23
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,13 @@ jobs:
2121
sudo apt-get update
2222
sudo apt-get install -y --no-install-recommends \
2323
espeak-ng \
24+
espeak-ng-data \
2425
git \
2526
libsndfile1 \
2627
curl \
27-
ffmpeg
28+
ffmpeg \
29+
g++ \
30+
cmake
2831
2932
- name: Install uv
3033
uses: astral-sh/setup-uv@v5

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,14 @@ jobs:
3333
env:
3434
DOCKER_BUILDKIT: 1
3535
BUILDKIT_STEP_LOG_MAX_SIZE: 10485760
36-
# This environment variable will override the VERSION variable in docker-bake.hcl
36+
# These environment variables will override the defaults within docker-bake.hcl
3737
VERSION: ${{ needs.prepare-release.outputs.version_tag }} # Use tag version (vX.Y.Z) for bake
3838
strategy:
3939
matrix:
4040
build_target: ["cpu", "cpu-arm64", "gpu-arm64", "gpu"]
41+
REGISTRY: ${{ vars.REGISTRY || 'ghcr.io' }} # Override with GitHub Action Environment Variable
42+
OWNER: ${{ vars.OWNER || 'remsky' }}
43+
REPO: ${{ vars.REPO || 'kokoro-fastapi' }}
4144
steps:
4245
- name: Checkout repository
4346
uses: actions/checkout@v4

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -661,3 +661,15 @@ This project is licensed under the Apache License 2.0 - see below for details:
661661
662662
The full Apache 2.0 license text can be found at: https://www.apache.org/licenses/LICENSE-2.0
663663
</details>
664+
665+
</details open>
666+
667+
## Contributor Stats
668+
![Alt](https://repobeats.axiom.co/api/embed/f9694366bf96febc749d592316ff0a275fe77219.svg "Repobeats analytics image")
669+
</details>
670+
671+
<a href="https://github.com/remsky/Kokoro-FastAPI/graphs/contributors">
672+
<img src="https://contrib.rocks/image?repo=remsky/Kokoro-FastAPI" />
673+
</a>
674+
675+
Made with [contrib.rocks](https://contrib.rocks).

docker/cpu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM python:3.10-slim
33
# Install dependencies and check espeak location
44
# Rust is required to build sudachipy and pyopenjtalk-plus
55
RUN apt-get update -y && \
6-
apt-get install -y espeak-ng espeak-ng-data git libsndfile1 curl ffmpeg g++ && \
6+
apt-get install -y espeak-ng espeak-ng-data git libsndfile1 curl ffmpeg g++ cmake && \
77
apt-get clean && rm -rf /var/lib/apt/lists/* && \
88
mkdir -p /usr/share/espeak-ng-data && \
99
ln -s /usr/lib/*/espeak-ng-data/* /usr/share/espeak-ng-data/ && \

docker/gpu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM --platform=$BUILDPLATFORM nvcr.io/nvidia/cuda:12.9.1-cudnn-devel-ubuntu24.0
22

33
# Install Python and other dependencies
44
RUN apt-get update -y && \
5-
apt-get install -y python3.10 python3-venv espeak-ng espeak-ng-data git libsndfile1 curl ffmpeg g++ && \
5+
apt-get install -y python3.10 python3-venv espeak-ng espeak-ng-data git libsndfile1 curl ffmpeg g++ cmake && \
66
apt-get clean && rm -rf /var/lib/apt/lists/* && \
77
mkdir -p /usr/share/espeak-ng-data && \
88
ln -s /usr/lib/*/espeak-ng-data/* /usr/share/espeak-ng-data/ && \

start-gpu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Get project root directory
44
PROJECT_ROOT=$(pwd)

0 commit comments

Comments
 (0)