mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 15:56:42 +00:00
b857a5ada1
This commit adds the last bits needed to have a working CI job of cerbero using mingw and msvc17 toolchain. It adds a new stage to the docker image that mirrors the setup of the cerbero fedora docker build, and tweaks the cerbero_setup script run by jobs with a couple windows specific fixes. Close #39 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/334>
6 lines
285 B
PowerShell
6 lines
285 B
PowerShell
$env:DEFAULT_BRANCH='master'
|
|
$env:VERSION='v12'
|
|
$env:tag ="registry.freedesktop.org/gstreamer/gst-ci/amd64/windows:$env:VERSION-$env:DEFAULT_BRANCH"
|
|
echo "Building $env:tag"
|
|
docker build --build-arg DEFAULT_BRANCH=$env:DEFAULT_BRANCH -f Dockerfile -t $env:tag .
|
|
# docker push $env:tag
|