aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci/build-fossilize.sh
blob: 35af32baa5b5376ff578cb1df631c0ad0cefa704 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -ex

git clone https://github.com/ValveSoftware/Fossilize.git
cd Fossilize
git checkout 6b5b570008c9ab5269e341f04c811fe49a1bb72c
git submodule update --init
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -G Ninja
ninja -C . -j4 install
cd ../..
rm -rf Fossilize