@@ -72,10 +72,10 @@ jobs:
7272 with :
7373 python-version : " 3.8"
7474 - uses : Swatinem/rust-cache@v2
75- - run : cargo clippy -vv --tests -- -D clippy::all -D warnings --no-deps
76- - run : cargo clippy -vv -- -D clippy::all -D warnings --no-deps
77- - run : cargo clippy -vv -p voicevox_core -p voicevox_core_c_api --features link-onnxruntime --tests -- -D clippy::all -D warnings --no-deps
78- - run : cargo clippy -vv -p voicevox_core -p voicevox_core_c_api --features link-onnxruntime -- -D clippy::all -D warnings --no-deps
75+ - run : cargo clippy -v --tests -- -D clippy::all -D warnings --no-deps
76+ - run : cargo clippy -v -- -D clippy::all -D warnings --no-deps
77+ - run : cargo clippy -v -p voicevox_core -p voicevox_core_c_api --features link-onnxruntime --tests -- -D clippy::all -D warnings --no-deps
78+ - run : cargo clippy -v -p voicevox_core -p voicevox_core_c_api --features link-onnxruntime -- -D clippy::all -D warnings --no-deps
7979 - run : cargo fmt -- --check
8080
8181 rust-unit-test :
8888 with :
8989 key : " cargo-unit-test-cache"
9090 - name : Run cargo unit test
91- run : RUST_BACKTRACE=full cargo test --lib --bins -vv -- --include-ignored
91+ run : RUST_BACKTRACE=full cargo test --lib --bins -v -- --include-ignored
9292 - name : Run cargo documentation test
93- run : RUST_BACKTRACE=full cargo test --doc -vv
93+ run : RUST_BACKTRACE=full cargo test --doc -v
9494
9595 rust-integration-test-strategy-matrix : # 実行対象の条件をフィルタリングする
9696 runs-on : ubuntu-latest
@@ -135,7 +135,7 @@ jobs:
135135 with :
136136 key : " cargo-integration-test-cache-${{ matrix.os }}"
137137 - name : Run cargo integration test (load-onnxruntime)
138- run : RUST_BACKTRACE=full cargo test --test "*" -vv -- --include-ignored
138+ run : RUST_BACKTRACE=full cargo test --test "*" -v -- --include-ignored
139139
140140 c-header :
141141 runs-on : ubuntu-latest
@@ -193,7 +193,7 @@ jobs:
193193 - name : Install cargo-binstall
194194 uses : taiki-e/install-action@cargo-binstall
195195 - name : build voicevox_core_c_api
196- run : cargo build -p voicevox_core_c_api --features load-onnxruntime -vv
196+ run : cargo build -p voicevox_core_c_api --features load-onnxruntime -v
197197 - name : 必要なfileをunix用exampleのディレクトリに移動させる
198198 run : |
199199 mkdir -p example/cpp/unix/voicevox_core/
@@ -237,7 +237,7 @@ jobs:
237237 - name : Install cargo-binstall
238238 uses : taiki-e/install-action@cargo-binstall
239239 - name : build voicevox_core_c_api
240- run : cargo build -p voicevox_core_c_api --features load-onnxruntime -vv
240+ run : cargo build -p voicevox_core_c_api --features load-onnxruntime -v
241241 - name : 必要なfileをexampleのディレクトリに移動させる
242242 shell : bash
243243 run : |
@@ -281,7 +281,7 @@ jobs:
281281 - run : |
282282 pip install --upgrade poetry
283283 poetry install --with dev --with test
284- - run : cargo build -p test_util -vv # build scriptにより/crates/test_util/data/の生成
284+ - run : cargo build -p test_util -v # build scriptにより/crates/test_util/data/の生成
285285 - run : poetry run maturin build --locked
286286 - run : poetry run maturin develop --locked
287287 - name : 必要なDLLをコピーしてpytestを実行
@@ -316,8 +316,8 @@ jobs:
316316 distribution : " adopt"
317317 - name : Build
318318 run : |
319- cargo build -p voicevox_core_java_api -vv
320- cargo build -p test_util -vv # build scriptにより/crates/test_util/data/の生成
319+ cargo build -p voicevox_core_java_api -v
320+ cargo build -p test_util -v # build scriptにより/crates/test_util/data/の生成
321321 - name : 必要なDLLをコピーしてテストを実行
322322 working-directory : crates/voicevox_core_java_api
323323 run : |
0 commit comments