ci: use latest gstreamer image which includes rust

This commit is contained in:
Stéphane Cerveau 2023-04-14 17:44:51 +02:00
parent e0274e8fd6
commit e0eee40e4b
4 changed files with 8 additions and 5 deletions

View file

@ -13,8 +13,8 @@ stages:
variables:
FDO_UPSTREAM_REPO: "dabrain34/GstPipelineStudio"
GNOME_RUNTIME_IMAGE: 'quay.io/gnome_infrastructure/gnome-runtime-images:gnome-44'
WINDOWS_RUST_STABLE_IMAGE: "$CI_REGISTRY_IMAGE/windows:$GST_RS_IMG_TAG-main-$GST_RS_STABLE"
WINDOWS_RUST_STABLE_UPSTREAM_IMAGE: "$CI_REGISTRY/$FDO_UPSTREAM_REPO/windows:$GST_RS_IMG_TAG-main-$GST_RS_STABLE"
WINDOWS_RUST_STABLE_IMAGE: "$CI_REGISTRY_IMAGE/windows:$GST_RS_IMG_TAG-main"
WINDOWS_RUST_STABLE_UPSTREAM_IMAGE: "$CI_REGISTRY/$FDO_UPSTREAM_REPO/windows:$GST_RS_IMG_TAG-main"
# Version and tag for our current container
.fedora:

View file

@ -1,4 +1,3 @@
variables:
GST_RS_IMG_TAG: '2023-04-12.1'
GST_RS_STABLE: '1.67.0'
GST_RS_MSRV: '1.63.0'
GST_RS_IMG_TAG: '2023-04-14.1'

View file

@ -4,6 +4,10 @@ RUSTUP_VERSION=1.23.1
RUST_VERSION=$1
RUST_ARCH="x86_64-unknown-linux-gnu"
rustup --version
cargo --version
rustc --version
RUSTUP_URL=https://static.rust-lang.org/rustup/archive/$RUSTUP_VERSION/$RUST_ARCH/rustup-init
wget $RUSTUP_URL

View file

@ -1,6 +1,6 @@
# escape=`
FROM "registry.freedesktop.org/gstreamer/gstreamer/amd64/windows:2023-03-20.0-main"
FROM "registry.freedesktop.org/gstreamer/gstreamer/amd64/windows:2023-04-03.0-main"
# Make sure any failure in PowerShell is fatal
ENV ErrorActionPreference='Stop'