@@ -35,27 +35,27 @@ jobs:
35
35
uses : actions-rs/cargo@v1
36
36
with :
37
37
command : build
38
- args : --manifest-path=psm/Cargo.toml --target-dir=target/
38
+ args : --manifest-path=psm/Cargo.toml
39
39
- name : Test
40
40
uses : actions-rs/cargo@v1
41
41
with :
42
42
command : test
43
- args : --manifest-path=psm/Cargo.toml --target-dir=target/ -- --nocapture
43
+ args : --manifest-path=psm/Cargo.toml -- --nocapture
44
44
- name : Test Examples
45
45
uses : actions-rs/cargo@v1
46
46
with :
47
47
command : test
48
- args : --manifest-path=psm/Cargo.toml --target-dir=target/ -- examples -- --nocapture
48
+ args : --manifest-path=psm/Cargo.toml --examples -- --nocapture
49
49
- name : Test Release
50
50
uses : actions-rs/cargo@v1
51
51
with :
52
52
command : test
53
- args : --manifest-path=psm/Cargo.toml --target-dir=target/ -- release -- --nocapture
53
+ args : --manifest-path=psm/Cargo.toml --release -- --nocapture
54
54
- name : Test Release Examples
55
55
uses : actions-rs/cargo@v1
56
56
with :
57
57
command : test
58
- args : --manifest-path=psm/Cargo.toml --target-dir=target/ -- examples --release -- --nocapture
58
+ args : --manifest-path=psm/Cargo.toml --examples --release -- --nocapture
59
59
60
60
windows-gnu-test :
61
61
runs-on : windows-latest
@@ -132,31 +132,31 @@ jobs:
132
132
with :
133
133
use-cross : true
134
134
command : build
135
- args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml --target-dir=/target/
135
+ args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml
136
136
- name : Test
137
137
uses : actions-rs/cargo@v1
138
138
with :
139
139
use-cross : true
140
140
command : test
141
- args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml --target-dir=/target/ -- --test-threads=1 --nocapture
141
+ args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml -- --test-threads=1 --nocapture
142
142
- name : Test Examples
143
143
uses : actions-rs/cargo@v1
144
144
with :
145
145
use-cross : true
146
146
command : test
147
- args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml --target-dir=/target/ -- examples -- --test-threads=1 --nocapture
147
+ args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml --examples -- --test-threads=1 --nocapture
148
148
- name : Test Release
149
149
uses : actions-rs/cargo@v1
150
150
with :
151
151
use-cross : true
152
152
command : test
153
- args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml --target-dir=/target/ -- release -- --test-threads=1 --nocapture
153
+ args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml --release -- --test-threads=1 --nocapture
154
154
- name : Test Release Examples
155
155
uses : actions-rs/cargo@v1
156
156
with :
157
157
use-cross : true
158
158
command : test
159
- args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml --target-dir=/target/ -- examples --release -- --test-threads=1 --nocapture
159
+ args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml --examples --release -- --test-threads=1 --nocapture
160
160
161
161
cross-build :
162
162
runs-on : ubuntu-latest
@@ -204,7 +204,7 @@ jobs:
204
204
with :
205
205
use-cross : true
206
206
command : build
207
- args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml --target-dir=/target/
207
+ args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml
208
208
209
209
bare-cross-build :
210
210
runs-on : ubuntu-latest
@@ -233,7 +233,7 @@ jobs:
233
233
uses : actions-rs/cargo@v1
234
234
with :
235
235
command : build
236
- args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml --target-dir=target/
236
+ args : --target ${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml
237
237
238
238
cross-ios-build :
239
239
runs-on : macos-latest
@@ -262,4 +262,4 @@ jobs:
262
262
uses : actions-rs/cargo@v1
263
263
with :
264
264
command : build
265
- args : --target=${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml --target-dir=target/
265
+ args : --target=${{ matrix.rust_target }} --manifest-path=psm/Cargo.toml
0 commit comments