~mmach/netext73/mesa-haswell

« back to all changes in this revision

Viewing changes to .gitlab-ci/container/build-fossilize.sh

  • Committer: mmach
  • Date: 2022-09-22 19:56:13 UTC
  • Revision ID: netbit73@gmail.com-20220922195613-wtik9mmy20tmor0i
2022-09-22 21:17:09

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
 
3
 
set -ex
4
 
 
5
 
git clone https://github.com/ValveSoftware/Fossilize.git
6
 
cd Fossilize
7
 
git checkout 16fba1b8b5d9310126bb02323d7bae3227338461
8
 
git submodule update --init
9
 
mkdir build
10
 
cd build
11
 
cmake -S .. -B . -G Ninja -DCMAKE_BUILD_TYPE=Release
12
 
ninja -C . install
13
 
cd ../..
14
 
rm -rf Fossilize