File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ jobs:
119119
120120 - name : Create simple Rust project
121121 run : |
122- cargo new --bin test-project
122+ cargo.exe new --bin test-project
123123 cd test-project
124124 @"
125125 [package]
@@ -173,14 +173,14 @@ jobs:
173173 run : |
174174 cd test-project
175175 Write-Host "Starting first compilation..."
176- Measure-Command { cargo build --release } | Select-Object TotalSeconds
176+ Measure-Command { cargo.exe build --release } | Select-Object TotalSeconds
177177
178178 - name : Clean and second compilation (cache hit expected)
179179 run : |
180180 cd test-project
181- cargo clean
181+ cargo.exe clean
182182 Write-Host "Starting second compilation (should be faster with sccache)..."
183- Measure-Command { cargo build --release } | Select-Object TotalSeconds
183+ Measure-Command { cargo.exe build --release } | Select-Object TotalSeconds
184184
185185 - name : Display sccache statistics
186186 run : |
You can’t perform that action at this time.
0 commit comments