CI: Install 'serde-yaml 0.9' from experimental

To make it possible for the CI to pass, during the transition
from 'serde-yaml 0.8' to 'serde-yaml 0.9' in Debian Trixie.

Part-of: <https://gitlab.gnome.org/World/Phosh/squeekboard/-/merge_requests/624>
This commit is contained in:
MoonlightWave-12
2024-03-13 12:49:11 +01:00
parent 7a55dce839
commit 0bc1ad4eaf

View File

@ -23,6 +23,7 @@ stages:
- deploy - deploy
before_script: before_script:
- echo "deb http://deb.debian.org/debian/ experimental main" > /etc/apt/sources.list.d/experimental.list
- apt-get -y update - apt-get -y update
- apt-get -y install ca-certificates - apt-get -y install ca-certificates
@ -45,6 +46,7 @@ build_meson:
- _build - _build
expire_in: 3h expire_in: 3h
script: script:
- apt-get -y install -t experimental librust-serde-yaml-dev
- apt-get -y build-dep . - apt-get -y build-dep .
- meson . _build/ -Ddepdatadir=/usr/share -Dfind_orphans=true --werror - meson . _build/ -Ddepdatadir=/usr/share -Dfind_orphans=true --werror
- ninja -C _build install - ninja -C _build install
@ -61,6 +63,7 @@ build_deb:
- '*.deb' - '*.deb'
script: script:
- rm -f ../*.deb - rm -f ../*.deb
- apt-get -y install -t experimental librust-serde-yaml-dev
- apt-get -y build-dep . - apt-get -y build-dep .
- apt-get -y install devscripts - apt-get -y install devscripts
- REV=$(git log -1 --format=%h) - REV=$(git log -1 --format=%h)
@ -80,6 +83,7 @@ build_reference:
paths: paths:
- _build/doc - _build/doc
script: script:
- apt-get -y install -t experimental librust-serde-yaml-dev
- apt-get -y build-dep . - apt-get -y build-dep .
- apt-get -y install cargo - apt-get -y install cargo
- cd _build - cd _build
@ -94,6 +98,7 @@ test:
- job: build_meson - job: build_meson
artifacts: true artifacts: true
script: script:
- apt-get -y install -t experimental librust-serde-yaml-dev
- apt-get -y build-dep . - apt-get -y build-dep .
- apt-get -y install clang-tidy - apt-get -y install clang-tidy
- ninja -C _build test - ninja -C _build test
@ -106,6 +111,7 @@ test_style:
stage: test stage: test
needs: [] needs: []
script: script:
- apt-get -y install -t experimental librust-serde-yaml-dev
- apt-get -y build-dep . - apt-get -y build-dep .
- tools/style-check_source - tools/style-check_source
except: except: