-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
bootstrap: add bootstrap step to run intrinsic-test in CI #156356
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
base: main
Are you sure you want to change the base?
Changes from 9 commits
74344ea
4a957f9
25adb6d
2bf11c7
78522de
aa253f0
7806b6a
8d349c6
198f278
2726d7b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,8 +19,16 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| mingw-w64 \ | ||
| zlib1g-dev \ | ||
| libzstd-dev \ | ||
| clang \ | ||
| lld \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| # Install Intel SDE for AVX-512 emulation | ||
| RUN curl -L http://ci-mirrors.rust-lang.org/sde-external-10.8.0-2026-03-15-lin.tar.xz -o /tmp/sde.tar.xz \ | ||
| && mkdir -p /intel-sde \ | ||
| && tar -xJf /tmp/sde.tar.xz --strip-components=1 -C /intel-sde \ | ||
| && rm /tmp/sde.tar.xz | ||
|
Comment on lines
+27
to
+30
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this doesn't need an instant fix, but we bump the version of this tool occasionally, so ideally we'd sync that version between the repositories.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, noted. |
||
|
|
||
| COPY scripts/sccache.sh /scripts/ | ||
| RUN sh /scripts/sccache.sh | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
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.
the intrinsic tests should also run when any of the source in
core_archchanges (unless I'm misinterpreting what this function does).View changes since the review
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.
No you are not misinterpreting :) . You're so right I have added the
core_archpath so it triggers . Thanks for the review.