Doesn't need to be done only for toolbox and we will need this when we switch the user gitlab-ci runs as. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7816>
16 lines
330 B
Bash
16 lines
330 B
Bash
#! /bin/bash
|
|
|
|
set -eux
|
|
|
|
bash ./ci/docker/fedora/install-deps.sh
|
|
|
|
# Configure git for various usage
|
|
git config --global user.email "gstreamer@gstreamer.net"
|
|
git config --global user.name "Gstbuild Runner"
|
|
|
|
bash ./ci/scripts/install-rust.sh
|
|
|
|
bash ./ci/scripts/create-container-user.sh
|
|
|
|
bash ./ci/scripts/create-subprojects-cache.sh
|