22 lines
728 B
Bash
22 lines
728 B
Bash
#!/bin/bash
|
|
#
|
|
# IMPORTANT: See
|
|
# https://gnome.pages.gitlab.gnome.org/librsvg/devel-docs/ci.html#container-image-version
|
|
|
|
# Activate the Python virtual environment for CI scripts.
|
|
#
|
|
# We test for the presence of the file, since when first creating the container images for CI,
|
|
# the venv has not been created yet. This is mostly a hack to allow having a single "env.sh"
|
|
# script instead of one for container creation and one for CI jobs.
|
|
if [ -f /usr/local/python/bin/activate ]; then
|
|
source /usr/local/python/bin/activate
|
|
fi
|
|
|
|
export RUSTUP_HOME='/usr/local/rustup'
|
|
export PATH=$PATH:/usr/local/cargo/bin
|
|
|
|
if [ ! -v CARGO_HOME ]; then
|
|
export CARGO_HOME=/srv/project/cargo_cache
|
|
mkdir -p /srv/project/cargo_cache
|
|
fi
|