Test Release Build #1
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: Test Release Build | |
on: | |
workflow_call: | |
inputs: | |
version: | |
type: string | |
required: true | |
repo_url: | |
type: string | |
required: false | |
workflow_dispatch: | |
inputs: | |
version: | |
type: string | |
description: "テストしたいタグ名" | |
required: true | |
repo_url: | |
type: string | |
description: "リポジトリの URL (省略可能)" | |
required: false | |
env: | |
PYTHON_VERSION: "3.11.9" | |
REPO_URL: | |
|- # repo_url指定時はrepo_urlを、それ以外はgithubのリポジトリURLを使用 | |
${{ (github.event.inputs || inputs).repo_url || format('{0}/{1}', github.server_url, github.repository) }} | |
VERSION: |- # version指定時はversionを、それ以外はタグ名を使用 | |
${{ (github.event.inputs || inputs).version }} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: windows-2022 | |
target: windows-x64 | |
- os: macos-12 | |
target: macos-x64 | |
- os: macos-14 | |
target: macos-arm64 | |
# - os: ubuntu-20.04 | |
# target: linux-x64 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: <Setup> Declare variables | |
id: vars | |
run: | | |
echo "release_url=${{ env.REPO_URL }}/releases/download/${{ env.VERSION }}" >> "$GITHUB_OUTPUT" | |
echo "package_name=aivisspeech-engine-${{ matrix.target }}-${{ env.VERSION }}" >> "$GITHUB_OUTPUT" | |
- name: <Setup> Check out the repository | |
uses: actions/checkout@v4 | |
- name: <Setup> Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: <Setup> Install Poetry | |
run: python -m pip install poetry | |
- name: <Setup> Cache Poetry | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pypoetry | |
key: ${{ runner.os }}-${{ runner.arch }}-poetry-${{ hashFiles('**/poetry.lock') }} | |
- name: <Setup> Download ENGINE package | |
run: | | |
mkdir -p download | |
curl -L -H "Authorization: Bearer ${{ github.token }}" -o "download/list.txt" "${{ steps.vars.outputs.release_url }}/${{ steps.vars.outputs.package_name }}.7z.txt" | |
<download/list.txt xargs -I '%' curl -L -H "Authorization: Bearer ${{ github.token }}" -o "download/%" "${{ steps.vars.outputs.release_url }}/%" | |
7z x "download/$(head -n1 download/list.txt)" | |
mv "${{ matrix.target }}" dist/ | |
- name: <Setup> Set up permission | |
if: startsWith(matrix.target, 'linux') || startsWith(matrix.target, 'macos') | |
run: chmod +x dist/run | |
- name: <Setup> Install Python test dependencies | |
run: poetry install --with=test | |
- name: <Test> Test ENGINE package | |
run: poetry run python build_util/check_release_build.py --dist_dir dist/ |