From 253549ef64704fdb3e5813d8c812faaf18a12391 Mon Sep 17 00:00:00 2001 From: Ryo Yamashita Date: Mon, 12 Feb 2024 03:38:58 +0900 Subject: [PATCH] =?UTF-8?q?`-p=20ort`=20=E2=86=92=20`-p=20voicevox-ort`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/code-quality.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index d3a1a0dc..1bdb6835 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -47,7 +47,7 @@ jobs: - name: Check fmt run: cargo fmt --all -- --check - name: Run clippy - run: cargo clippy -p ort --all-targets --workspace --features fetch-models + run: cargo clippy -p voicevox-ort --all-targets --workspace --features fetch-models coverage: name: Code coverage runs-on: ubuntu-latest @@ -71,7 +71,7 @@ jobs: run: cargo install cargo-tarpaulin - name: Generate code coverage run: | - cargo tarpaulin -p ort --features fetch-models --verbose --timeout 120 --out xml + cargo tarpaulin -p voicevox-ort --features fetch-models --verbose --timeout 120 --out xml - name: Upload to codecov.io uses: codecov/codecov-action@v3 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 40d42835..3dd0d1f5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,7 @@ jobs: - uses: Swatinem/rust-cache@v1 - name: Run tests run: | - cargo test -p ort --verbose --features fetch-models -- --test-threads 1 + cargo test -p voicevox-ort --verbose --features fetch-models -- --test-threads 1 cross-compile: name: Cross-platform compile runs-on: ${{ matrix.platform.os }} @@ -74,4 +74,4 @@ jobs: - name: Build/test run: | cargo install cross --git https://github.com/cross-rs/cross - cross test -p ort --features fetch-models --target aarch64-unknown-linux-gnu -v + cross test -p voicevox-ort --features fetch-models --target aarch64-unknown-linux-gnu -v