ci: update indent image to GNU indent 2.2.12

... and dotnet-sdk to 7.0.

Fixes #340

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4182>
This commit is contained in:
Tim-Philipp Müller 2023-03-15 19:01:47 +00:00 committed by GStreamer Marge Bot
parent cb61fb02ef
commit f75d4f5f9f
3 changed files with 5 additions and 4 deletions

View file

@ -141,7 +141,7 @@ fedora amd64 docker:
.gst-indent image:
variables:
FDO_DISTRIBUTION_VERSION: 'stretch'
FDO_DISTRIBUTION_VERSION: 'bookworm'
FDO_REPO_SUFFIX: "$INDENT_AMD64_SUFFIX"
FDO_DISTRIBUTION_TAG: "$INDENT_TAG-$GST_UPSTREAM_BRANCH"
FDO_DISTRIBUTION_PACKAGES: 'curl indent git findutils'

View file

@ -6,6 +6,6 @@ variables:
# to change any part of the string of the image you want.
###
FEDORA_TAG: '2022-12-10.0'
INDENT_TAG: '2022-03-07.1'
INDENT_TAG: '2023-03-16.1'
LINT_TAG: '2023-02-16.5'
WINDOWS_TAG: '2023-03-11.0'

View file

@ -5,11 +5,12 @@ apt update -yqq
apt install -y gnupg apt-transport-https
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg
mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/
curl -O https://packages.microsoft.com/config/debian/9/prod.list
# FIXME: this is bullseye, but image is actually bookworm (testing at the time)
curl -O https://packages.microsoft.com/config/debian/11/prod.list
mv prod.list /etc/apt/sources.list.d/microsoft-prod.list
chown root:root /etc/apt/trusted.gpg.d/microsoft.asc.gpg
chown root:root /etc/apt/sources.list.d/microsoft-prod.list
apt update -yqq
apt install -y dotnet-sdk-5.0
apt install -y dotnet-sdk-7.0
dotnet tool install --global dotnet-format
ln -s ~/.dotnet/tools/dotnet-format /usr/local/bin/dotnet-format