Skip to content

Commit

Permalink
Build可能なようにrevert (#398)
Browse files Browse the repository at this point in the history
* Revert "コアのバージョンを0.12.0-preview.2に (#395)"

This reverts commit 482a376.

* マニフェストが用意されていなくてもビルドされるように
  • Loading branch information
Hiroshiba authored May 12, 2022
1 parent f146933 commit d91cdd6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
env:
IMAGE_NAME: ${{ secrets.DOCKERHUB_USERNAME }}/voicevox_engine
PYTHON_VERSION: "3.8.10"
VOICEVOX_CORE_VERSION: "0.12.0-preview.2"
VOICEVOX_CORE_VERSION: "0.11.4"
VOICEVOX_ENGINE_VERSION:
|- # releaseのときはタグが、それ以外はlatestがバージョン名に
${{ github.event.release.tag_name != '' && github.event.release.tag_name || 'latest' }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
IMAGE_NAME: ${{ secrets.DOCKERHUB_USERNAME }}/voicevox_engine
PYTHON_VERSION: "3.8.10"
VOICEVOX_RESOURCE_VERSION: "0.11.4"
VOICEVOX_CORE_VERSION: "0.12.0-preview.2"
VOICEVOX_CORE_VERSION: "0.12.0-preview.0"
VOICEVOX_ENGINE_VERSION:
|- # releaseのときはタグが、それ以外はlatestがバージョン名に
${{ github.event.release.tag_name != '' && github.event.release.tag_name || 'latest' }}
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
set -eux
rm -r speaker_info
cp -r download/resource/character_info speaker_info
cp -r download/resource/manifest_assets manifest_assets
# cp -r download/resource/manifest_assets manifest_assets # TODO: リソースに追加されたらコメント解除
- name: Prepare VOICEVOX Core release cache
uses: actions/cache@v2
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
set -eux
rm -r speaker_info
cp -r download/resource/character_info speaker_info
cp -r download/resource/manifest_assets manifest_assets
# cp -r download/resource/manifest_assets manifest_assets # TODO: リソースに追加されたらコメント解除
# NOTE: `load: true` may silently fail when the GitHub Actions disk (14GB) is full.
# https://docs.github.com/ja/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
Expand Down Expand Up @@ -646,7 +646,7 @@ jobs:
set -eux
rm -r speaker_info
cp -r download/resource/character_info speaker_info
cp -r download/resource/manifest_assets manifest_assets
# cp -r download/resource/manifest_assets manifest_assets # TODO: リソースに追加されたらコメント解除
# Download VOICEVOX Core
- name: Prepare VOICEVOX Core cache
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN <<EOF
EOF

# assert VOICEVOX_CORE_VERSION >= 0.11.0 (ONNX)
ARG VOICEVOX_CORE_VERSION=0.12.0-preview.2
ARG VOICEVOX_CORE_VERSION=0.11.4
ARG VOICEVOX_CORE_LIBRARY_NAME=libcore_cpu_x64.so
RUN <<EOF
set -eux
Expand Down

0 comments on commit d91cdd6

Please sign in to comment.