19 lines
380 B
Bash
19 lines
380 B
Bash
#! /bin/bash
|
|
|
|
set -eux
|
|
|
|
bash ./ci/docker/debian/install-deps.sh
|
|
|
|
bash ./ci/scripts/install-rust.sh
|
|
|
|
# Configure git for various usage
|
|
git config --global user.email "gstreamer@gstreamer.net"
|
|
git config --global user.name "Gstbuild Runner"
|
|
|
|
bash ./ci/scripts/create-container-user.sh
|
|
|
|
bash ./ci/scripts/create-subprojects-cache.sh
|
|
|
|
# leftover caches
|
|
rm -rf /root/.cache /root/.npm
|