Skip to content

Conversation

@jif-oai
Copy link
Collaborator

@jif-oai jif-oai commented Nov 14, 2025

No description provided.

Copy link
Contributor

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +98 to 101
# Speed up repeated builds across CI runs by caching compiled objects (non-Windows).
USE_SCCACHE: ${{ startsWith(matrix.runner, 'windows') && 'false' || 'true' }}
RUSTC_WRAPPER: ${{ startsWith(matrix.runner, 'windows') && '' || 'sccache' }}
CARGO_INCREMENTAL: "0"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Stop exporting empty RUSTC_WRAPPER on Windows jobs

The new env block sets RUSTC_WRAPPER: ${{ startsWith(matrix.runner, 'windows') && '' || 'sccache' }} (and the same block is duplicated for the test job). On Windows runners startsWith evaluates to true, so RUSTC_WRAPPER is exported as an empty string. Cargo only checks whether RUSTC_WRAPPER is present, not whether it is non-empty, so every cargo invocation on Windows will now try to execute a program whose path is "" and immediately fail with “failed to execute: No such file or directory,” breaking all Windows CI jobs. To actually “drop sccache for Windows” you need to omit the variable entirely for Windows rather than setting it to an empty string.

Useful? React with 👍 / 👎.

@jif-oai jif-oai merged commit 4719cba into main Nov 14, 2025
25 checks passed
@jif-oai jif-oai deleted the jif/drop-sccache-windos branch November 14, 2025 16:29
@github-actions github-actions bot locked and limited conversation to collaborators Nov 14, 2025
@jif-oai jif-oai restored the jif/drop-sccache-windos branch November 17, 2025 16:09
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants