-
Notifications
You must be signed in to change notification settings - Fork 760
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
Skip compile_html test on musl #1756
Conversation
The torch index has no musllinux wheel, so we need to skip the test on alpine.
.gitignore
Outdated
@@ -4,7 +4,7 @@ | |||
# Generated by Cargo | |||
# will have compiled files and executables | |||
debug/ | |||
target/ | |||
target* |
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.
Why?
.gitignore
Outdated
@@ -4,7 +4,7 @@ | |||
# Generated by Cargo | |||
# will have compiled files and executables | |||
debug/ | |||
target/ | |||
target* |
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.
This helps when setting CARGO_TARGET_DIR="target-alpine"
when both the host and the docker think they are the default target
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.
Feels like it maybe belongs in a personal .gitignore
. Can we at least change to target-alpine/
? Otherwise I worry this will cause a confusing behavior in the future when we forget about it.
The torch index has no musllinux wheel, so we need to skip the test on alpine.