mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-02 22:54:05 +08:00
7fb13a9153
We're about to add ARM images using this same infra. Signed-off-by: Eric Engestrom <eric@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29241>
20 lines
427 B
Bash
20 lines
427 B
Bash
#!/bin/bash
|
|
|
|
# When changing this file, you need to bump the following
|
|
# .gitlab-ci/image-tags.yml tags:
|
|
# DEBIAN_TEST_VK_TAG
|
|
# KERNEL_ROOTFS_TAG
|
|
|
|
set -ex
|
|
|
|
git clone https://github.com/ValveSoftware/Fossilize.git
|
|
cd Fossilize
|
|
git checkout b43ee42bbd5631ea21fe9a2dee4190d5d875c327
|
|
git submodule update --init
|
|
mkdir build
|
|
cd build
|
|
cmake -S .. -B . -G Ninja -DCMAKE_BUILD_TYPE=Release
|
|
ninja -C . install
|
|
cd ../..
|
|
rm -rf Fossilize
|