ci: set TMPDIR=/host/tmp in datapath verifier tests#45047
Merged
Conversation
Member
Author
|
/test |
viktor-kurchenko
approved these changes
Mar 30, 2026
|
/test |
f17ba5a to
c1fff44
Compare
Member
Author
|
/ci-verifier |
auto-merge was automatically disabled
March 30, 2026 09:26
Pull request was converted to draft
|
/test |
Use /var/tmp for Go build temporary files to avoid running out of disk space on the tmpfs-backed /tmp in the LVH VM. Also redirect the extract-llvm.sh output to /var/tmp for the same reason. /var/tmp lives on the VM's real disk (not tmpfs) and supports mmap (unlike the 9p-mounted /host), making it suitable for Go's linker. Signed-off-by: Andr Martins <andre@cilium.io>
c1fff44 to
d733873
Compare
Member
Author
|
/ci-verifier |
|
/test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Use /var/tmp for Go build temporary files to avoid running out of
disk space on the tmpfs-backed /tmp in the LVH VM. Also redirect the
extract-llvm.sh output to /var/tmp for the same reason.
/var/tmp lives on the VM's real disk (not tmpfs) and supports mmap
(unlike the 9p-mounted /host), making it suitable for Go's linker.