mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-16 12:25:50 +00:00
a80fef34a2
This dehardcodes the builddir the scripts use, and allows us to pass it as a cli argument. It also allows us to pass the test stuite string as an arg for test.sh This makes the scripts a bit more usable for local development as well. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7114>
56 lines
1.3 KiB
Bash
Executable file
56 lines
1.3 KiB
Bash
Executable file
#! /bin/bash
|
|
|
|
builddir="$1"
|
|
|
|
if [[ -z "$builddir" ]]; then
|
|
echo "Usage: build.sh <build_directory>"
|
|
exit 1
|
|
fi
|
|
|
|
set -eux
|
|
|
|
# Expects:
|
|
# BUILD_TYPE: Proxy of meson's --default-library arg
|
|
# must be 'shared' or 'static' or 'both'
|
|
# BUILD_GST_DEBUG: Build with gst debug symbols or not
|
|
# must be a string like this: -Dgstreamer:gst_debug=true.
|
|
# GST_WERROR: make warning fatal or not
|
|
# must be a string of a boolean, "true" or "false". Not yaml bool.
|
|
# SUBPROJECTS_CACHE_DIR: The location in the image of the subprojects cache
|
|
|
|
export RUSTUP_HOME="/usr/local/rustup"
|
|
export CARGO_HOME="/usr/local/cargo"
|
|
export PATH="/usr/local/cargo/bin:$PATH"
|
|
|
|
# nproc works on linux
|
|
# sysctl for macos
|
|
_jobs=$(nproc || sysctl -n hw.ncpu)
|
|
jobs="${FDO_CI_CONCURRENT:-$_jobs}"
|
|
|
|
date -R
|
|
ci/scripts/handle-subprojects-cache.py --cache-dir /subprojects subprojects/
|
|
|
|
ARGS="${BUILD_TYPE:---default-library=both} ${BUILD_GST_DEBUG:--Dgstreamer:gst_debug=true} ${MESON_ARGS}"
|
|
echo "Werror: $GST_WERROR"
|
|
|
|
if [ "$GST_WERROR" = "true" ]; then
|
|
ARGS="$ARGS --native-file ./ci/meson/gst-werror.ini"
|
|
fi
|
|
|
|
date -R
|
|
meson setup "$builddir" --native-file ./ci/meson/gst-ci-cflags.ini ${ARGS}
|
|
date -R
|
|
|
|
if command -v ccache
|
|
then
|
|
ccache --show-stats
|
|
fi
|
|
|
|
date -R
|
|
meson compile -C "$builddir" --jobs "$jobs"
|
|
date -R
|
|
|
|
if command -v ccache
|
|
then
|
|
ccache --show-stats
|
|
fi
|