mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
7cf69a0f2f
Move the fluster setup into it's own image. It's only one job using it and this allows us to make the build image used for the rest of the jobs smaller. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7455>
13 lines
286 B
Bash
13 lines
286 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-subprojects-cache.sh
|