Skip to content
Snippets Groups Projects
Commit 3687916e authored by Ludovico de Nittis's avatar Ludovico de Nittis
Browse files

build-relocatable-install: Include Vulkan shaders


Previously we were missing to include the Vulkan shaders in the
relocatable pressure-vessel tarball. This leaded to `check-vulkan` to
fail because it didn't find the required shaders.

Fixes: #62

Signed-off-by: default avatarLudovico de Nittis <ludovico.denittis@collabora.com>
parent 4363e0dd
No related branches found
No related tags found
1 merge request!261build-relocatable-install: Include Vulkan shaders
Pipeline #9770 passed
......@@ -364,6 +364,15 @@ def main():
),
)
for shader in glob.glob(os.path.join(path, 'shaders', '*.spv')):
install(
shader,
os.path.join(
installation, 'libexec', 'steam-runtime-tools-0',
'shaders', os.path.basename(shader),
)
)
primary_architecture = subprocess.check_output([
'dpkg', '--print-architecture',
]).decode('utf-8').strip()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment