Skip to content

Commit 9a00f1d

Browse files
Fix CI for Philips Hue changes
* Debian builder has been upgraded to buster due to incompatible mbedtls package on stretch * Mint 19, Ubuntu 18.04 have been disabled for testing as they use incompatible mbedtls packages
1 parent b7e2103 commit 9a00f1d

File tree

2 files changed

+54
-54
lines changed

2 files changed

+54
-54
lines changed

.gitlab-ci.yml

Lines changed: 53 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ before_script:
3232
#-----------------------------------------------------------------------#
3333
"Linux 32 AppImage":
3434
<<: *ccache_init
35-
image: registry.gitlab.com/openrgbdevelopers/openrgb-linux-ci-deb-builder:stretch-32
35+
image: registry.gitlab.com/openrgbdevelopers/openrgb-linux-ci-deb-builder:buster-32
3636
stage: build
3737
script:
3838
- export $(dpkg-architecture)
@@ -51,7 +51,7 @@ before_script:
5151
#-----------------------------------------------------------------------#
5252
"Linux 64 AppImage":
5353
<<: *ccache_init
54-
image: registry.gitlab.com/openrgbdevelopers/openrgb-linux-ci-deb-builder:stretch-64
54+
image: registry.gitlab.com/openrgbdevelopers/openrgb-linux-ci-deb-builder:buster-64
5555
stage: build
5656
script:
5757
- export $(dpkg-architecture)
@@ -70,7 +70,7 @@ before_script:
7070
#-----------------------------------------------------------------------#
7171
"Linux 32 deb":
7272
<<: *ccache_init
73-
image: registry.gitlab.com/openrgbdevelopers/openrgb-linux-ci-deb-builder:stretch-32
73+
image: registry.gitlab.com/openrgbdevelopers/openrgb-linux-ci-deb-builder:buster-32
7474
stage: build
7575
script:
7676
- dpkg-architecture -l
@@ -91,7 +91,7 @@ before_script:
9191
#-----------------------------------------------------------------------#
9292
"Linux 64 deb":
9393
<<: *ccache_init
94-
image: registry.gitlab.com/openrgbdevelopers/openrgb-linux-ci-deb-builder:stretch-64
94+
image: registry.gitlab.com/openrgbdevelopers/openrgb-linux-ci-deb-builder:buster-64
9595
stage: build
9696
script:
9797
- dpkg-architecture -l
@@ -214,39 +214,39 @@ before_script:
214214
needs:
215215
- "Linux 32 deb"
216216

217-
#-----------------------------------------------------------------------#
218-
# Ubuntu 32 18.04LTS test #
219-
#-----------------------------------------------------------------------#
220-
"Ubuntu 32 18.04LTS":
221-
image: i386/ubuntu:bionic
222-
stage: test
223-
script:
224-
- apt update
225-
- DEBIAN_FRONTEND=noninteractive apt install -yq --no-install-recommends ./openrgb*i386.deb
226-
- openrgb --version
227-
- openrgb -l
228-
- apt remove -y openrgb
229-
dependencies:
230-
- "Linux 32 deb"
231-
needs:
232-
- "Linux 32 deb"
233-
234-
#-----------------------------------------------------------------------#
235-
# Mint 32 19.3 test #
236-
#-----------------------------------------------------------------------#
237-
"Mint 32 20.1":
238-
image: linuxmintd/mint19.3-i386
239-
stage: test
240-
script:
241-
- apt update
242-
- DEBIAN_FRONTEND=noninteractive apt install -yq --no-install-recommends ./openrgb*i386.deb
243-
- openrgb --version
244-
- openrgb -l
245-
- apt remove -y openrgb
246-
dependencies:
247-
- "Linux 32 deb"
248-
needs:
249-
- "Linux 32 deb"
217+
# #-----------------------------------------------------------------------#
218+
# # Ubuntu 32 18.04LTS test #
219+
# #-----------------------------------------------------------------------#
220+
# "Ubuntu 32 18.04LTS":
221+
# image: i386/ubuntu:bionic
222+
# stage: test
223+
# script:
224+
# - apt update
225+
# - DEBIAN_FRONTEND=noninteractive apt install -yq --no-install-recommends ./openrgb*i386.deb
226+
# - openrgb --version
227+
# - openrgb -l
228+
# - apt remove -y openrgb
229+
# dependencies:
230+
# - "Linux 32 deb"
231+
# needs:
232+
# - "Linux 32 deb"
233+
234+
# #-----------------------------------------------------------------------#
235+
# # Mint 32 19.3 test #
236+
# #-----------------------------------------------------------------------#
237+
# "Mint 32 20.1":
238+
# image: linuxmintd/mint19.3-i386
239+
# stage: test
240+
# script:
241+
# - apt update
242+
# - DEBIAN_FRONTEND=noninteractive apt install -yq --no-install-recommends ./openrgb*i386.deb
243+
# - openrgb --version
244+
# - openrgb -l
245+
# - apt remove -y openrgb
246+
# dependencies:
247+
# - "Linux 32 deb"
248+
# needs:
249+
# - "Linux 32 deb"
250250

251251
#-----------------------------------------------------------------------#
252252
# Debian 64 Buster test #
@@ -298,22 +298,22 @@ before_script:
298298
needs:
299299
- "Linux 64 rpm"
300300

301-
#-----------------------------------------------------------------------#
302-
# Ubuntu 64 18.04LTS test #
303-
#-----------------------------------------------------------------------#
304-
"Ubuntu 64 18.04LTS":
305-
image: ubuntu:bionic
306-
stage: test
307-
script:
308-
- apt update
309-
- DEBIAN_FRONTEND=noninteractive apt install -yq --no-install-recommends ./openrgb*amd64.deb
310-
- openrgb --version
311-
- openrgb -l
312-
- apt remove -y openrgb
313-
dependencies:
314-
- "Linux 64 deb"
315-
needs:
316-
- "Linux 64 deb"
301+
# #-----------------------------------------------------------------------#
302+
# # Ubuntu 64 18.04LTS test #
303+
# #-----------------------------------------------------------------------#
304+
# "Ubuntu 64 18.04LTS":
305+
# image: ubuntu:bionic
306+
# stage: test
307+
# script:
308+
# - apt update
309+
# - DEBIAN_FRONTEND=noninteractive apt install -yq --no-install-recommends ./openrgb*amd64.deb
310+
# - openrgb --version
311+
# - openrgb -l
312+
# - apt remove -y openrgb
313+
# dependencies:
314+
# - "Linux 64 deb"
315+
# needs:
316+
# - "Linux 64 deb"
317317

318318
#-----------------------------------------------------------------------#
319319
# Ubuntu 64 20.04LTS test #

fedora/OpenRGB.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ License: GPLv2
99
URL: https://gitlab.com/CalcProgrammer1/%{_name}
1010
Source0: OpenRGB.tar.gz
1111

12-
BuildRequires: gcc-c++ libusb-devel libstdc++-devel qt5-qtbase-devel desktop-file-utils hidapi-devel
12+
BuildRequires: gcc-c++ libusb-devel libstdc++-devel qt5-qtbase-devel desktop-file-utils hidapi-devel mbedtls-devel
1313
Requires: hicolor-icon-theme
1414

1515
%description

0 commit comments

Comments
 (0)