Module: Mesa Branch: main Commit: ce49034bbbb0837630438fa2037a074c4b73f0ac URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ce49034bbbb0837630438fa2037a074c4b73f0ac
Author: Eric Engestrom <[email protected]> Date: Fri Jul 28 13:45:40 2023 +0100 bin/ci/gitlab_gql: use venv wrapper Signed-off-by: Eric Engestrom <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24367> --- bin/ci/gitlab_gql.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bin/ci/gitlab_gql.sh b/bin/ci/gitlab_gql.sh new file mode 100755 index 00000000000..3d2767c4d0e --- /dev/null +++ b/bin/ci/gitlab_gql.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +set -eu + +this_dir=$(dirname -- "$(readlink -f -- "${BASH_SOURCE[0]}")") +readonly this_dir + +exec \ + "$this_dir/../python-venv.sh" \ + "$this_dir/requirements.txt" \ + "$this_dir/gitlab_gql.py" "$@"
