[CI] Setup vulkan env for building e2e tests#21247
Merged
sarnex merged 4 commits intointel:syclfrom Feb 10, 2026
Merged
Conversation
Signed-off-by: Nick Sarnie <nick.sarnie@intel.com>
Contributor
Contributor
Author
|
Sure, hopefully it works :) |
Signed-off-by: Nick Sarnie <nick.sarnie@intel.com>
uditagarwal97
approved these changes
Feb 9, 2026
Signed-off-by: Nick Sarnie <nick.sarnie@intel.com>
Contributor
Author
|
@uditagarwal97 Just pushed a new commit fixing a new problem I found, described in issue 3 in the description, hopefully it looks okay. |
Contributor
The new commit looks good. |
Contributor
|
@sarnex The vulkan tests still fail in the "E2E (NVIDIA/CUDA, ["Linux", "cuda"], -u 1001 --gpus all --cap-add SYS_ADMIN, cuda:gpu) / NVIDIA/CUDA" CI job. Another example in my PR: https://github.com/intel/llvm/actions/runs/21841132270/job/63029325219?pr=21242 |
Contributor
Author
|
@ldorau That's expected, the new container isn't being used, we need to merge this PR first and then wait for the containers to be built+published. |
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.
Two problems:
The vulkan env wasn't set up when building e2e tests so those tests weren't build, but at test-time the env was set up so they ran, but the test wasn't build so you get a test_exe_not_found error
After 1) is fixed, my fix for Vulkan on NVIDIA had a problem, need to install one extra package. Manually verified this fixes it.
A hidden existing issue, on 24.04 the vulkan script wasn't running because
aptwas erroring about someclang-formatdependency problem (we need to useclang-format-22but we only have the unversioned apt repo entry which has moved on to23, so add22explicitly) but the script didn't error because we didn't haveset -x. Fix the dependency problem and the script to error on failure.Closes: #21239