mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 02:26:16 +00:00
ci: Add ubuntu groovy.
This commit is contained in:
parent
aca6980ffd
commit
aa10e9c013
|
@ -36,6 +36,12 @@ variables:
|
|||
FDO_DISTRIBUTION_VERSION: "20.04"
|
||||
FDO_DISTRIBUTION_TAG: "2021-02-23.0"
|
||||
|
||||
# Variables for build and usage of Ubuntu 20.10 (Groovy) image
|
||||
.monado.variables.ubuntu:groovy:
|
||||
variables:
|
||||
FDO_DISTRIBUTION_VERSION: "20.10"
|
||||
FDO_DISTRIBUTION_TAG: "2021-03-19.0"
|
||||
|
||||
# Variables for build and usage of Debian 10 (Buster) + Android NDK image
|
||||
.monado.variables.debian:buster-ndk:
|
||||
variables:
|
||||
|
@ -114,6 +120,18 @@ ubuntu:container_prep:
|
|||
# a list of packages to install - assembled from .monado.variables.debian-based-packages
|
||||
FDO_DISTRIBUTION_PACKAGES: "${CORE_REQUIRED_PACKAGES} ${FEATURE_PACKAGES} ${PACKAGING_PACKAGES} ${TOOLS_REQUIRED_PACKAGES}"
|
||||
|
||||
# Ubuntu Groovy (x64)
|
||||
ubuntu:groovy:container_prep:
|
||||
stage: container_prep
|
||||
extends:
|
||||
- .monado.variables.ubuntu:focal
|
||||
- .monado.variables.container-prep-base
|
||||
- .monado.variables.debian-based-packages
|
||||
- .fdo.container-build@ubuntu # from ci-templates
|
||||
variables:
|
||||
# a list of packages to install - assembled from .monado.variables.debian-based-packages
|
||||
FDO_DISTRIBUTION_PACKAGES: "${CORE_REQUIRED_PACKAGES} ${FEATURE_PACKAGES} ${PACKAGING_PACKAGES} ${TOOLS_REQUIRED_PACKAGES}"
|
||||
|
||||
# Debian Buster + the Android NDK in /opt/android-ndk
|
||||
# The NDK itself gets installed by .gitlab-ci/ndk:container_prep.sh
|
||||
ndk:container_prep:
|
||||
|
@ -351,6 +369,16 @@ ubuntu:focal:package:
|
|||
PACKAGE_BRANCH: ubuntu/focal
|
||||
DISTRO: focal
|
||||
|
||||
ubuntu:groovy:package:
|
||||
extends:
|
||||
- .monado.variables.ubuntu:groovy
|
||||
- .fdo.distribution-image@ubuntu # from ci-templates
|
||||
- .monado.base-job.debuild
|
||||
|
||||
variables:
|
||||
BACKPORT_SUFFIX: ubuntu20.04
|
||||
PACKAGE_BRANCH: ubuntu/focal
|
||||
DISTRO: focal
|
||||
reprepro:package:
|
||||
stage: reprepro
|
||||
extends:
|
||||
|
@ -360,6 +388,7 @@ reprepro:package:
|
|||
dependencies:
|
||||
- debian:buster:package
|
||||
- ubuntu:focal:package
|
||||
- ubuntu:groovy:package
|
||||
before_script:
|
||||
# Convince gnupg to work properly in CI
|
||||
- mkdir -p ~/.gnupg && chmod 700 ~/.gnupg
|
||||
|
|
5
.gitlab-ci/ubuntu_groovy_container_prep.sh
Normal file
5
.gitlab-ci/ubuntu_groovy_container_prep.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
# Copyright 2021, Collabora, Ltd. and the Monado contributors
|
||||
# SPDX-License-Identifier: BSL-1.0
|
||||
|
||||
# Nothing really needed.
|
Loading…
Reference in a new issue