@@ -35,27 +35,27 @@ jobs:
3535 uses : actions-rs/cargo@v1
3636 with :
3737 command : build
38- args : --manifest-path=psm/Cargo.toml --target-dir=target/
38+ args : --manifest-path=psm/Cargo.toml
3939 - name : Test
4040 uses : actions-rs/cargo@v1
4141 with :
4242 command : test
43- args : --manifest-path=psm/Cargo.toml --target-dir=target/ -- --nocapture
43+ args : --manifest-path=psm/Cargo.toml -- --nocapture
4444 - name : Test Examples
4545 uses : actions-rs/cargo@v1
4646 with :
4747 command : test
48- args : --manifest-path=psm/Cargo.toml --target-dir=target/ -- examples -- --nocapture
48+ args : --manifest-path=psm/Cargo.toml --examples -- --nocapture
4949 - name : Test Release
5050 uses : actions-rs/cargo@v1
5151 with :
5252 command : test
53- args : --manifest-path=psm/Cargo.toml --target-dir=target/ -- release -- --nocapture
53+ args : --manifest-path=psm/Cargo.toml --release -- --nocapture
5454 - name : Test Release Examples
5555 uses : actions-rs/cargo@v1
5656 with :
5757 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
5959
6060 windows-gnu-test :
6161 runs-on : windows-latest
@@ -132,31 +132,31 @@ jobs:
132132 with :
133133 use-cross : true
134134 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
136136 - name : Test
137137 uses : actions-rs/cargo@v1
138138 with :
139139 use-cross : true
140140 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
142142 - name : Test Examples
143143 uses : actions-rs/cargo@v1
144144 with :
145145 use-cross : true
146146 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
148148 - name : Test Release
149149 uses : actions-rs/cargo@v1
150150 with :
151151 use-cross : true
152152 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
154154 - name : Test Release Examples
155155 uses : actions-rs/cargo@v1
156156 with :
157157 use-cross : true
158158 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
160160
161161 cross-build :
162162 runs-on : ubuntu-latest
@@ -204,7 +204,7 @@ jobs:
204204 with :
205205 use-cross : true
206206 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
208208
209209 bare-cross-build :
210210 runs-on : ubuntu-latest
@@ -233,7 +233,7 @@ jobs:
233233 uses : actions-rs/cargo@v1
234234 with :
235235 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
237237
238238 cross-ios-build :
239239 runs-on : macos-latest
@@ -262,4 +262,4 @@ jobs:
262262 uses : actions-rs/cargo@v1
263263 with :
264264 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