Skip to content

Commit

Permalink
整理: ビルド CI step を分割 (VOICEVOX#1294)
Browse files Browse the repository at this point in the history
refactor: Action steps を分割
  • Loading branch information
tarepan authored May 24, 2024
1 parent 3f381ed commit ccfa54f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build-engine-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -289,15 +289,14 @@ jobs:
cache: pip

- name: <Setup> Install Python dependencies
run: |
python -m pip install -r requirements-dev.txt
run: python -m pip install -r requirements-dev.txt

if [ "$RUNNER_OS" = Windows ]; then
# Modify PyInstaller to enable NvOptimusEnablement and AmdPowerXpressRequestHighPerformance
./build_util/modify_pyinstaller.bash
fi
- name: <Setup> Prepare custom PyInstaller
if: startsWith(matrix.os, 'windows-')
run: ./build_util/modify_pyinstaller.bash

# Download pyopenjtalk dictionary
- name: <Setup> Download pyopenjtalk dictionary
run: |
# try 5 times, sleep 5 seconds before retry
for _ in $(seq 5); do
EXIT_CODE=0
Expand Down

0 comments on commit ccfa54f

Please sign in to comment.