Skip to content

Commit e285104

Browse files
committed
src/constants: add support for fedora 43 and 44
Should make the gating tests actually pass on 43 and rawhide.
1 parent 9820baa commit e285104

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

playwright/helpers/helpers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ const ON_PREM_RELEASES = new Map([
5454
['centos-10', 'CentOS Stream 10'],
5555
['fedora-41', 'Fedora Linux 41'],
5656
['fedora-42', 'Fedora Linux 42'],
57+
['fedora-43', 'Fedora Linux 43'],
58+
['fedora-44', 'Fedora Linux 44'],
5759
['rhel-10', 'Red Hat Enterprise Linux (RHEL) 10'],
5860
]);
5961

src/constants.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ export const CENTOS_9 = 'centos-9';
6363
export const CENTOS_10 = 'centos-10';
6464
export const FEDORA_41 = 'fedora-41';
6565
export const FEDORA_42 = 'fedora-42';
66+
export const FEDORA_43 = 'fedora-43';
67+
export const FEDORA_44 = 'fedora-44';
6668
export const X86_64 = 'x86_64';
6769
export const AARCH64 = 'aarch64';
6870

@@ -102,6 +104,8 @@ export const ON_PREM_RELEASES = new Map([
102104
[CENTOS_10, 'CentOS Stream 10'],
103105
[FEDORA_41, 'Fedora Linux 41'],
104106
[FEDORA_42, 'Fedora Linux 42'],
107+
[FEDORA_43, 'Fedora Linux 43'],
108+
[FEDORA_44, 'Fedora Linux 44'],
105109
[RHEL_10, 'Red Hat Enterprise Linux (RHEL) 10'],
106110
]);
107111

0 commit comments

Comments
 (0)