Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
Maybe this fixes windows CI?
Browse files Browse the repository at this point in the history
  • Loading branch information
darthdeus committed Oct 20, 2023
1 parent 53f523f commit 3094dc7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,14 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Remove cargo config for incremental builds

- name: Remove cargo config for incremental builds (Linux & macOS)
run: rm -f .cargo/config.toml
if: runner.os != 'windows'

- name: Remove cargo config for incremental builds (Windows)
run: Remove-Item .cargo\config.toml -Force -ErrorAction SilentlyContinue
if: runner.os == 'windows'

- uses: dtolnay/rust-toolchain@nightly

Expand Down

0 comments on commit 3094dc7

Please sign in to comment.