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