aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2022-01-05 17:55:51 -0800
committerA Wireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2022-01-06 04:18:44 +0000
commit734d8cfbeed9eae8aa89621557b50ee5cba22b84 (patch)
tree55d5cb164dcd6f9d328c0fc8db541db3301fb92e /.gitlab-ci.yml
parent5573d3c4e8b2a0d2845d87eb0a1ebc1b36e47041 (diff)
GitLab CI: Update a couple of RPM builds.
Switch from Centos 8 to Rocky Linux 8 and switch from openSUSE 15.2 to 15.3. Alphabetize our Linux jobs.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml102
1 files changed, 51 insertions, 51 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 83b50559b4..2c425907e5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -223,57 +223,6 @@ CentOS 7 RPM Test:
- tshark --version
needs: [ 'CentOS 7 RPM Package' ]
-CentOS 8 RPM Package:
- extends: .build-rpm
- image: registry.gitlab.com/wireshark/wireshark-containers/centos-8-dev
- script:
- - printf "\e[0Ksection_start:%s:cmake_section[collapsed=true]\r\e[0KRunning CMake" "$( date +%s)"
- - cmake -GNinja ..
- - printf "\e[0Ksection_end:%s:cmake_section\r\e[0K" "$( date +%s)"
- - ninja-build rpm-package
-CentOS 8 RPM Test:
- extends: .test-rpm
- image: registry.gitlab.com/wireshark/wireshark-containers/centos-8-dev
- script:
- - dnf --nogpgcheck localinstall -y build/packaging/rpm/RPMS/x86_64/*.rpm
- - tshark --version
- needs: [ 'CentOS 8 RPM Package' ]
-
-openSUSE 15.2 RPM Package:
- extends: .build-rpm
- image: registry.gitlab.com/wireshark/wireshark-containers/opensuse-15.2-dev
- script:
- - printf "\e[0Ksection_start:%s:cmake_section[collapsed=true]\r\e[0KRunning CMake" "$( date +%s)"
- - cmake -GNinja ..
- - printf "\e[0Ksection_end:%s:cmake_section\r\e[0K" "$( date +%s)"
- - ninja rpm-package
-openSUSE 15.2 RPM Test:
- extends: .test-rpm
- image: registry.gitlab.com/wireshark/wireshark-containers/opensuse-15.2-dev
- script:
- - zypper --no-gpg-checks --no-remote install -y build/packaging/rpm/RPMS/x86_64/*.rpm
- - tshark --version
- needs: [ 'openSUSE 15.2 RPM Package' ]
-
-Fedora RPM Package:
- extends: .build-rpm
- image: registry.gitlab.com/wireshark/wireshark-containers/fedora-dev
- script:
- # Shared GitLab runners limit the log size to 4M, so reduce verbosity. See
- # https://gitlab.com/gitlab-com/support-forum/issues/2790
- - export FORCE_CMAKE_NINJA_NON_VERBOSE=1
- - printf "\e[0Ksection_start:%s:cmake_section[collapsed=true]\r\e[0KRunning CMake" "$( date +%s)"
- - cmake3 -GNinja ..
- - printf "\e[0Ksection_end:%s:cmake_section\r\e[0K" "$( date +%s)"
- - ninja rpm-package
-# Fedora RPM Test:
-# extends: .test-rpm
-# image: fedora
-# script:
-# - dnf install -y build/packaging/rpm/RPMS/x86_64/*.rpm
-# - tshark --version
-# needs: [ 'Fedora RPM Package' ]
-
# Job to generate packages for Debian stable
Debian Stable APT Package:
extends: .build-linux
@@ -305,6 +254,57 @@ Debian Stable APT Test:
GIT_STRATEGY: none
needs: [ 'Debian Stable APT Package' ]
+Fedora RPM Package:
+ extends: .build-rpm
+ image: registry.gitlab.com/wireshark/wireshark-containers/fedora-dev
+ script:
+ # Shared GitLab runners limit the log size to 4M, so reduce verbosity. See
+ # https://gitlab.com/gitlab-com/support-forum/issues/2790
+ - export FORCE_CMAKE_NINJA_NON_VERBOSE=1
+ - printf "\e[0Ksection_start:%s:cmake_section[collapsed=true]\r\e[0KRunning CMake" "$( date +%s)"
+ - cmake3 -GNinja ..
+ - printf "\e[0Ksection_end:%s:cmake_section\r\e[0K" "$( date +%s)"
+ - ninja rpm-package
+# Fedora RPM Test:
+# extends: .test-rpm
+# image: fedora
+# script:
+# - dnf install -y build/packaging/rpm/RPMS/x86_64/*.rpm
+# - tshark --version
+# needs: [ 'Fedora RPM Package' ]
+
+openSUSE 15.3 RPM Package:
+ extends: .build-rpm
+ image: registry.gitlab.com/wireshark/wireshark-containers/opensuse-15.3-dev
+ script:
+ - printf "\e[0Ksection_start:%s:cmake_section[collapsed=true]\r\e[0KRunning CMake" "$( date +%s)"
+ - cmake -GNinja ..
+ - printf "\e[0Ksection_end:%s:cmake_section\r\e[0K" "$( date +%s)"
+ - ninja rpm-package
+openSUSE 15.3 RPM Test:
+ extends: .test-rpm
+ image: registry.gitlab.com/wireshark/wireshark-containers/opensuse-15.3-dev
+ script:
+ - zypper --no-gpg-checks --no-remote install -y build/packaging/rpm/RPMS/x86_64/*.rpm
+ - tshark --version
+ needs: [ 'openSUSE 15.3 RPM Package' ]
+
+Rocky Linux 8 RPM Package:
+ extends: .build-rpm
+ image: registry.gitlab.com/wireshark/wireshark-containers/rockylinux-8-dev
+ script:
+ - printf "\e[0Ksection_start:%s:cmake_section[collapsed=true]\r\e[0KRunning CMake" "$( date +%s)"
+ - cmake -GNinja ..
+ - printf "\e[0Ksection_end:%s:cmake_section\r\e[0K" "$( date +%s)"
+ - ninja-build rpm-package
+Rocky Linux 8 RPM Test:
+ extends: .test-rpm
+ image: registry.gitlab.com/wireshark/wireshark-containers/rockylinux-8-dev
+ script:
+ - dnf --nogpgcheck localinstall -y build/packaging/rpm/RPMS/x86_64/*.rpm
+ - tshark --version
+ needs: [ 'Rocky Linux 8 RPM Package' ]
+
Win64 Package:
extends: .build-windows
rules: !reference [.if-w-w-only-merged]