mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
895290f411
visualstudio variant now pulls in more build-tools deps on top of mingw since it enables the rust variant by default. It's also the variant that's tested on Cerbero CI. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2507>
27 lines
1.2 KiB
Bash
27 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 = "vs16"' >> localconf.cbc
|
|
|
|
# Fetch all bootstrap requirements
|
|
./cerbero-uninstalled -t -v visualstudio -c localconf.cbc -c config/win64.cbc fetch-bootstrap --jobs=4
|
|
# Fetch all package requirements for a mingw gstreamer build
|
|
./cerbero-uninstalled -t -c localconf.cbc -c config/win64.cbc fetch-package --jobs=4 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 --jobs=4 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
|
|
|
|
# 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
|