Skip to content

Commit 63108d5

Browse files
committed
Add environment to the other steps.
1 parent 8031147 commit 63108d5

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.circleci/config.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,19 @@ jobs:
143143
rustc --version; cargo --version; rustup --version
144144
- run:
145145
name: Calculate dependencies
146-
command: cargo generate-lockfile
146+
command: |
147+
export PATH=$USERPROFILE/.cargo/bin:$PATH
148+
cargo generate-lockfile
147149
- run:
148150
name: Build all targets
149-
command: cargo build --all --all-targets
151+
command: |
152+
export PATH=$USERPROFILE/.cargo/bin:$PATH
153+
cargo build --all --all-targets
150154
- run:
151155
name: Run all tests
152-
command: cargo test --all
156+
command: |
157+
export PATH=$USERPROFILE/.cargo/bin:$PATH
158+
cargo test --all
153159
154160
155161
workflows:

0 commit comments

Comments
 (0)