@@ -72,10 +72,10 @@ jobs:
72
72
with :
73
73
python-version : " 3.8"
74
74
- 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
79
79
- run : cargo fmt -- --check
80
80
81
81
rust-unit-test :
88
88
with :
89
89
key : " cargo-unit-test-cache"
90
90
- 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
92
92
- name : Run cargo documentation test
93
- run : RUST_BACKTRACE=full cargo test --doc -vv
93
+ run : RUST_BACKTRACE=full cargo test --doc -v
94
94
95
95
rust-integration-test-strategy-matrix : # 実行対象の条件をフィルタリングする
96
96
runs-on : ubuntu-latest
@@ -135,7 +135,7 @@ jobs:
135
135
with :
136
136
key : " cargo-integration-test-cache-${{ matrix.os }}"
137
137
- 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
139
139
140
140
c-header :
141
141
runs-on : ubuntu-latest
@@ -193,7 +193,7 @@ jobs:
193
193
- name : Install cargo-binstall
194
194
uses : taiki-e/install-action@cargo-binstall
195
195
- 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
197
197
- name : 必要なfileをunix用exampleのディレクトリに移動させる
198
198
run : |
199
199
mkdir -p example/cpp/unix/voicevox_core/
@@ -237,7 +237,7 @@ jobs:
237
237
- name : Install cargo-binstall
238
238
uses : taiki-e/install-action@cargo-binstall
239
239
- 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
241
241
- name : 必要なfileをexampleのディレクトリに移動させる
242
242
shell : bash
243
243
run : |
@@ -281,7 +281,7 @@ jobs:
281
281
- run : |
282
282
pip install --upgrade poetry
283
283
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/の生成
285
285
- run : poetry run maturin build --locked
286
286
- run : poetry run maturin develop --locked
287
287
- name : 必要なDLLをコピーしてpytestを実行
@@ -316,8 +316,8 @@ jobs:
316
316
distribution : " adopt"
317
317
- name : Build
318
318
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/の生成
321
321
- name : 必要なDLLをコピーしてテストを実行
322
322
working-directory : crates/voicevox_core_java_api
323
323
run : |
0 commit comments