We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
Currently when we want to switch the PHP version for a build, we have to run
cargo clean PATH="/path/to/build:${PATH}" cargo build
Which wipes out the entire compilation cache.
The build script should use cargo:rerun-if-env-changed=PATH so that we can just do:
cargo:rerun-if-env-changed=PATH
PATH="/path/to/build:${PATH}" cargo build
and cargo rebuilds only what's needed, not the entire dependency tree.
The text was updated successfully, but these errors were encountered:
4ca5c0d
Successfully merging a pull request may close this issue.
Hi,
Currently when we want to switch the PHP version for a build, we have to run
cargo clean PATH="/path/to/build:${PATH}" cargo build
Which wipes out the entire compilation cache.
The build script should use
cargo:rerun-if-env-changed=PATH
so that we can just do:PATH="/path/to/build:${PATH}" cargo build
and cargo rebuilds only what's needed, not the entire dependency tree.
The text was updated successfully, but these errors were encountered: