gitlab CI: bump to newer Ubuntus
authorPeter Hutterer <peter.hutterer@who-t.net>
Wed, 4 Jan 2023 05:20:54 +0000 (15:20 +1000)
committerJihoon Kim <jihoon48.kim@samsung.com>
Fri, 17 Nov 2023 10:55:47 +0000 (19:55 +0900)
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
.gitlab-ci.yml
.gitlab-ci/config.yml

index 84a0f9239d95916be97dbec950e6fc87beaa046b..e3ed2928059db750fe087fdab5ce8c4f90e4b700 100644 (file)
@@ -69,49 +69,49 @@ variables:
 .fedora:34:
   extends: .fdo.distribution-image@fedora
   variables:
-    FDO_DISTRIBUTION_TAG: '2022-02-02.0'
+    FDO_DISTRIBUTION_TAG: '2023-01-04.5'
     FDO_DISTRIBUTION_VERSION: '34'
 
 .fedora:35:
   extends: .fdo.distribution-image@fedora
   variables:
-    FDO_DISTRIBUTION_TAG: '2022-02-02.0'
+    FDO_DISTRIBUTION_TAG: '2023-01-04.5'
     FDO_DISTRIBUTION_VERSION: '35'
 
-.ubuntu:21.04:
+.ubuntu:22.04:
   extends: .fdo.distribution-image@ubuntu
   variables:
-    FDO_DISTRIBUTION_TAG: '2022-02-02.0'
-    FDO_DISTRIBUTION_VERSION: '21.04'
+    FDO_DISTRIBUTION_TAG: '2023-01-04.5'
+    FDO_DISTRIBUTION_VERSION: '22.04'
 
-.ubuntu:21.10:
+.ubuntu:22.10:
   extends: .fdo.distribution-image@ubuntu
   variables:
-    FDO_DISTRIBUTION_TAG: '2022-02-02.0'
-    FDO_DISTRIBUTION_VERSION: '21.10'
+    FDO_DISTRIBUTION_TAG: '2023-01-04.5'
+    FDO_DISTRIBUTION_VERSION: '22.10'
 
 .debian:stable:
   extends: .fdo.distribution-image@debian
   variables:
-    FDO_DISTRIBUTION_TAG: '2022-02-02.0'
+    FDO_DISTRIBUTION_TAG: '2023-01-04.5'
     FDO_DISTRIBUTION_VERSION: 'stable'
 
 .debian:sid:
   extends: .fdo.distribution-image@debian
   variables:
-    FDO_DISTRIBUTION_TAG: '2022-02-02.0'
+    FDO_DISTRIBUTION_TAG: '2023-01-04.5'
     FDO_DISTRIBUTION_VERSION: 'sid'
 
 .arch:rolling:
   extends: .fdo.distribution-image@arch
   variables:
-    FDO_DISTRIBUTION_TAG: '2022-02-02.0'
+    FDO_DISTRIBUTION_TAG: '2023-01-04.5'
     FDO_DISTRIBUTION_VERSION: 'rolling'
 
 .alpine:latest:
   extends: .fdo.distribution-image@alpine
   variables:
-    FDO_DISTRIBUTION_TAG: '2022-02-02.0'
+    FDO_DISTRIBUTION_TAG: '2023-01-04.5'
     FDO_DISTRIBUTION_VERSION: 'latest'
 
 
@@ -209,7 +209,7 @@ check-merge-request:
     - kvm
   variables:
     GIT_STRATEGY: none
-    FDO_DISTRIBUTION_TAG: qemu-2022-02-02.0
+    FDO_DISTRIBUTION_TAG: qemu-2023-01-04.5
   allow_failure: true
 
 # Always rebuilds the container
@@ -270,9 +270,9 @@ fedora:35@container-forced-rebuild:
 
 
 # Pulls in the container from upstream or rebuilds it if missing
-ubuntu:21.04@container-prep:
+ubuntu:22.04@container-prep:
   extends:
-    - .ubuntu:21.04
+    - .ubuntu:22.04
     - .ubuntu.packages
     - .fdo.container-build@ubuntu
   stage: prep
@@ -280,9 +280,9 @@ ubuntu:21.04@container-prep:
     GIT_STRATEGY: none
 
 # Always rebuilds the container
-ubuntu:21.04@container-forced-rebuild:
+ubuntu:22.04@container-forced-rebuild:
   extends:
-    - ubuntu:21.04@container-prep
+    - ubuntu:22.04@container-prep
   only:
     - schedules
   variables:
@@ -290,9 +290,9 @@ ubuntu:21.04@container-forced-rebuild:
 
 
 # Pulls in the container from upstream or rebuilds it if missing
-ubuntu:21.10@container-prep:
+ubuntu:22.10@container-prep:
   extends:
-    - .ubuntu:21.10
+    - .ubuntu:22.10
     - .ubuntu.packages
     - .fdo.container-build@ubuntu
   stage: prep
@@ -300,9 +300,9 @@ ubuntu:21.10@container-prep:
     GIT_STRATEGY: none
 
 # Always rebuilds the container
-ubuntu:21.10@container-forced-rebuild:
+ubuntu:22.10@container-forced-rebuild:
   extends:
-    - ubuntu:21.10@container-prep
+    - ubuntu:22.10@container-prep
   only:
     - schedules
   variables:
@@ -434,19 +434,19 @@ fedora:35@container-clean:
     - .container-clean
   needs: ["fedora:35@container-prep"]
 
-### ubuntu 21.04
-ubuntu:21.04@container-clean:
+### ubuntu 22.04
+ubuntu:22.04@container-clean:
   extends:
-    - .ubuntu:21.04
+    - .ubuntu:22.04
     - .container-clean
-  needs: ["ubuntu:21.04@container-prep"]
+  needs: ["ubuntu:22.04@container-prep"]
 
-### ubuntu 21.10
-ubuntu:21.10@container-clean:
+### ubuntu 22.10
+ubuntu:22.10@container-clean:
   extends:
-    - .ubuntu:21.10
+    - .ubuntu:22.10
     - .container-clean
-  needs: ["ubuntu:21.10@container-prep"]
+  needs: ["ubuntu:22.10@container-prep"]
 
 ### debian stable
 debian:stable@container-clean:
@@ -530,34 +530,34 @@ fedora:35@meson-build:
   needs: ['fedora:35@container-prep']
 
 
-ubuntu:21.04@autotools-build:
+ubuntu:22.04@autotools-build:
   extends:
-    - .ubuntu:21.04
+    - .ubuntu:22.04
     - .autotools-build@template
   stage: autotools
-  needs: ['ubuntu:21.04@container-prep']
+  needs: ['ubuntu:22.04@container-prep']
 
-ubuntu:21.04@meson-build:
+ubuntu:22.04@meson-build:
   extends:
-    - .ubuntu:21.04
+    - .ubuntu:22.04
     - .meson-build@template
   stage: meson
-  needs: ['ubuntu:21.04@container-prep']
+  needs: ['ubuntu:22.04@container-prep']
 
 
-ubuntu:21.10@autotools-build:
+ubuntu:22.10@autotools-build:
   extends:
-    - .ubuntu:21.10
+    - .ubuntu:22.10
     - .autotools-build@template
   stage: autotools
-  needs: ['ubuntu:21.10@container-prep']
+  needs: ['ubuntu:22.10@container-prep']
 
-ubuntu:21.10@meson-build:
+ubuntu:22.10@meson-build:
   extends:
-    - .ubuntu:21.10
+    - .ubuntu:22.10
     - .meson-build@template
   stage: meson
-  needs: ['ubuntu:21.10@container-prep']
+  needs: ['ubuntu:22.10@container-prep']
 
 
 debian:stable@autotools-build:
index 3e94f38e8e5e60a4ec8c3aa78a3c69f9e961b9db..1f621a66d9f6c591b90d6823c68692ddad6e9f82 100644 (file)
@@ -3,7 +3,7 @@
 #
 
 # We're happy to rebuild all containers when one changes.
-.default_tag: &default_tag '2022-02-02.0'
+.default_tag: &default_tag '2023-01-04.5'
 
 distributions:
   - name: fedora
@@ -33,8 +33,8 @@ distributions:
   - name: ubuntu
     tag: *default_tag
     versions:
-      - '21.04'
-      - '21.10'
+      - '22.04'
+      - '22.10'
     packages:
       - git
       - gcc