xref: /third_party/mesa3d/.gitlab-ci/container/build-hang-detection.sh
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/mesa3d/.gitlab-ci/container/
1#!/bin/bash
2
3set -ex
4
5PARALLEL_DEQP_RUNNER_VERSION=fe557794b5dadd8dbf0eae403296625e03bda18a
6
7git clone https://gitlab.freedesktop.org/mesa/parallel-deqp-runner --single-branch -b master --no-checkout /parallel-deqp-runner
8pushd /parallel-deqp-runner
9git checkout "$PARALLEL_DEQP_RUNNER_VERSION"
10meson . _build
11ninja -C _build hang-detection
12mkdir -p build/bin
13install _build/hang-detection build/bin
14strip build/bin/*
15find . -not -path './build' -not -path './build/*' -delete
16popd
17

Indexes created Thu Nov 07 10:32:03 CST 2024