summaryrefslogtreecommitdiff
path: root/.gitlab-ci/container/build-vulkan-validation.sh
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci/container/build-vulkan-validation.sh')
-rw-r--r--.gitlab-ci/container/build-vulkan-validation.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/.gitlab-ci/container/build-vulkan-validation.sh b/.gitlab-ci/container/build-vulkan-validation.sh
deleted file mode 100644
index c93a44d3b38..00000000000
--- a/.gitlab-ci/container/build-vulkan-validation.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env bash
-
-# When changing this file, you need to bump the following
-# .gitlab-ci/image-tags.yml tags:
-# DEBIAN_X86_64_TEST_GL_TAG
-# KERNEL_ROOTFS_TAG:
-
-set -ex
-
-VALIDATION_TAG="v1.3.263"
-
-git clone -b "$VALIDATION_TAG" --single-branch --depth 1 https://github.com/KhronosGroup/Vulkan-ValidationLayers.git
-pushd Vulkan-ValidationLayers
-python3 scripts/update_deps.py --dir external --config debug
-cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_TESTS=OFF -DBUILD_WERROR=OFF -C external/helper.cmake -S . -B build
-ninja -C build install
-popd
-rm -rf Vulkan-ValidationLayers