mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
98e3c7d8b8
We were doing a few things suboptimally: 1. Making a symlink from the current directory to ../../gstreamer/cerbero so that build-tools kept working, which should not be necessary since cerbero relocates all binaries inside the cerbero homedir after extracting the cache. 2. Hard-coding the cerbero builddir when building on Windows because `pwd` was outputting an MSYS-style path which Python can't read 3. rsync-ing all the contents of $CERBERO_HOST_DIR, which is bad because we should be building on top of the artifact cache. The only thing we want from $CERBERO_HOST_DIR is cerbero-sources (the network cache), and we can setup the toolchain during bootstrap with the new --system and --toolchains arguments which were split out of --system-only. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/350>
29 lines
1.2 KiB
Bash
29 lines
1.2 KiB
Bash
#! /bin/bash
|
|
|
|
set -eux
|
|
|
|
cd C:/
|
|
git clone -b ${DEFAULT_BRANCH} https://gitlab.freedesktop.org/gstreamer/cerbero.git
|
|
cd cerbero
|
|
|
|
echo 'local_sources="C:/cerbero/cerbero-sources"' > localconf.cbc
|
|
echo 'home_dir="C:/cerbero/cerbero-build"' >> localconf.cbc
|
|
echo 'vs_install_path = "C:/BuildTools"' >> localconf.cbc
|
|
echo 'vs_install_version = "vs15"' >> localconf.cbc
|
|
|
|
# Fetch all bootstrap requirements
|
|
./cerbero-uninstalled -t -c localconf.cbc -c config/win64.cbc fetch-bootstrap
|
|
# Fetch all package requirements for a mingw gstreamer build
|
|
./cerbero-uninstalled -t -c localconf.cbc -c config/win64.cbc fetch-package gstreamer-1.0
|
|
# Fetch all package requirements for a visualstudio gstreamer build
|
|
./cerbero-uninstalled -t -v visualstudio -c localconf.cbc -c config/win64.cbc fetch-package gstreamer-1.0
|
|
|
|
# Fixup the MSYS installation
|
|
./cerbero-uninstalled -t -c localconf.cbc -c config/win64.cbc bootstrap -y --build-tools=no --toolchains=no --offline
|
|
|
|
# Delete mingw toolchain binary tarball
|
|
rm /c/cerbero/cerbero-sources/mingw-*.tar.xz
|
|
# Wipe visualstudio package dist, sources, logs, and the build tools recipes
|
|
./cerbero-uninstalled -t -v visualstudio -c localconf.cbc -c config/win64.cbc wipe --force --build-tools
|
|
# clean the localconf
|
|
rm /c/cerbero/localconf.cbc
|