-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci: using imdisk on Windows (experimental) #255
Conversation
@@ -45,6 +45,14 @@ jobs: | |||
with: | |||
prefix-key: ${{ matrix.os }}-${{ matrix.rustc_version }}-${{ env.CI_RUST_CACHE_VERSION }}-${{ hashFiles('**/Cargo.lock') }} | |||
# See rust-wasm.yml for CI details about those package | |||
- name: Setup ramdisk (on Windows) | |||
run: | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:3:22: Double quote to prevent globbing and word splitting [shellcheck]
.github/workflows/rust.yml
Outdated
$path = "$(Join-Path $env:GITHUB_WORKSPACE target)" | ||
echo "Mount point: $path" | ||
imdisk -a -s 2G -m "$path" -p "/fs:ntfs /q /y" | ||
if: ${{ matrix.runner == 'windows-latest' }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[actionlint] reported by reviewdog 🐶
property "runner" is not defined in object type {os: string; rustc_channel: string; rustc_version: string} [expression]
No description provided.