1#!/bin/bash 2 3# When changing this file, you need to bump the following 4# .gitlab-ci/image-tags.yml tags: 5# DEBIAN_X86_64_TEST_VK_TAG 6# KERNEL_ROOTFS_TAG 7 8set -ex 9 10git clone https://github.com/ValveSoftware/Fossilize.git 11cd Fossilize 12git checkout b43ee42bbd5631ea21fe9a2dee4190d5d875c327 13git submodule update --init 14mkdir build 15cd build 16cmake -S .. -B . -G Ninja -DCMAKE_BUILD_TYPE=Release 17ninja -C . install 18cd ../.. 19rm -rf Fossilize 20