@@ -41,14 +41,14 @@ jobs:
41
41
uses : actions-rs/cargo@v1
42
42
with :
43
43
use-cross : true
44
- command : build --verbose
44
+ command : build
45
45
args : --target ${{ inputs.target }}
46
46
47
47
- name : Test
48
48
uses : actions-rs/cargo@v1
49
49
with :
50
50
use-cross : true
51
- command : test --verbose
51
+ command : test
52
52
args : --target ${{ inputs.target }}
53
53
54
54
test-aesni :
@@ -80,14 +80,14 @@ jobs:
80
80
uses : actions-rs/cargo@v1
81
81
with :
82
82
use-cross : true
83
- command : build --verbose
83
+ command : build
84
84
args : --target ${{ inputs.target }}
85
85
86
86
- name : Test
87
87
uses : actions-rs/cargo@v1
88
88
with :
89
89
use-cross : true
90
- command : test --verbose
90
+ command : test
91
91
args : --target ${{ inputs.target }}
92
92
93
93
test-aesni-vaes :
@@ -118,15 +118,15 @@ jobs:
118
118
uses : actions-rs/cargo@v1
119
119
with :
120
120
use-cross : true
121
- command : build --verbose
121
+ command : build
122
122
args : --target ${{ inputs.target }} --features=nightly
123
123
124
124
- name : Test
125
125
uses : actions-rs/cargo@v1
126
126
with :
127
127
use-cross : true
128
128
command : test
129
- args : --verbose -- target ${{ inputs.target }} --features=nightly
129
+ args : --target ${{ inputs.target }} --features=nightly
130
130
131
131
test-aesni-vaes-avx512f :
132
132
if : contains(inputs.target, '86') && inputs.channel == 'nightly'
@@ -157,11 +157,11 @@ jobs:
157
157
with :
158
158
use-cross : true
159
159
command : build
160
- args : --verbose -- target ${{ inputs.target }} --features=nightly
160
+ args : --target ${{ inputs.target }} --features=nightly
161
161
162
162
- name : Test
163
163
uses : actions-rs/cargo@v1
164
164
with :
165
165
use-cross : true
166
166
command : test
167
- args : --verbose -- target ${{ inputs.target }} --features=nightly
167
+ args : --target ${{ inputs.target }} --features=nightly
0 commit comments