Skip to content

Commit 54f5b8d

Browse files
committed
fixing testing harness
1 parent a577064 commit 54f5b8d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/rust.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141
uses: actions-rs/cargo@v1
4242
with:
4343
use-cross: true
44-
command: build --verbose
44+
command: build
4545
args: --target ${{ inputs.target }}
4646

4747
- name: Test
4848
uses: actions-rs/cargo@v1
4949
with:
5050
use-cross: true
51-
command: test --verbose
51+
command: test
5252
args: --target ${{ inputs.target }}
5353

5454
test-aesni:
@@ -80,14 +80,14 @@ jobs:
8080
uses: actions-rs/cargo@v1
8181
with:
8282
use-cross: true
83-
command: build --verbose
83+
command: build
8484
args: --target ${{ inputs.target }}
8585

8686
- name: Test
8787
uses: actions-rs/cargo@v1
8888
with:
8989
use-cross: true
90-
command: test --verbose
90+
command: test
9191
args: --target ${{ inputs.target }}
9292

9393
test-aesni-vaes:
@@ -118,15 +118,15 @@ jobs:
118118
uses: actions-rs/cargo@v1
119119
with:
120120
use-cross: true
121-
command: build --verbose
121+
command: build
122122
args: --target ${{ inputs.target }} --features=nightly
123123

124124
- name: Test
125125
uses: actions-rs/cargo@v1
126126
with:
127127
use-cross: true
128128
command: test
129-
args: --verbose --target ${{ inputs.target }} --features=nightly
129+
args: --target ${{ inputs.target }} --features=nightly
130130

131131
test-aesni-vaes-avx512f:
132132
if: contains(inputs.target, '86') && inputs.channel == 'nightly'
@@ -157,11 +157,11 @@ jobs:
157157
with:
158158
use-cross: true
159159
command: build
160-
args: --verbose --target ${{ inputs.target }} --features=nightly
160+
args: --target ${{ inputs.target }} --features=nightly
161161

162162
- name: Test
163163
uses: actions-rs/cargo@v1
164164
with:
165165
use-cross: true
166166
command: test
167-
args: --verbose --target ${{ inputs.target }} --features=nightly
167+
args: --target ${{ inputs.target }} --features=nightly

0 commit comments

Comments
 (0)