mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-28 04:34:25 +08:00
14 lines
402 B
Bash
14 lines
402 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
git clone https://gitlab.freedesktop.org/mesa/piglit.git --single-branch --no-checkout /piglit
|
|
pushd /piglit
|
|
git checkout 404862743cf8a7b37a4e3a93b4ba1858d59cd4ab
|
|
patch -p1 <$OLDPWD/.gitlab-ci/piglit/disable-vs_in.diff
|
|
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release
|
|
ninja
|
|
find -name .git -o -name '*ninja*' -o -iname '*cmake*' -o -name '*.[chao]' | xargs rm -rf
|
|
rm -rf target_api
|
|
popd
|