Skip to content

Commit bb7b31f

Browse files
committed
Maybe it is the extension?
Signed-off-by: Adam Gutglick <adam@spiraldb.com>
1 parent f434f91 commit bb7b31f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test-sccache.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)