Skip to content

Commit 398e57e

Browse files
authored
CLOUDP-133279: Fix repo configuration for Ubuntu 22 & RHEL 9 and also fix for 6.0 repo (#1419)
* CLOUDP-133279: Fix repo configuration for Ubuntu 22 & RHEL 9 and also fix for 6.0 repo * Add 6.0 for tests
1 parent e5b8483 commit 398e57e

File tree

3 files changed

+46
-1
lines changed

3 files changed

+46
-1
lines changed

build/ci/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ functions:
197197
- signing_auth_token_44
198198
- signing_auth_token_46
199199
- signing_auth_token_50
200+
- signing_auth_token_60
200201
- tool_name
201202
env:
202203
<<: *go_env

build/ci/repo_config.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,14 @@ repos:
106106
- yum/redhat/8/mongodb-org
107107
- yum/redhat/8Server/mongodb-org
108108

109+
- name: rhel90
110+
type: rpm
111+
edition: org
112+
bucket: repo.mongodb.org
113+
repos:
114+
- yum/redhat/9/mongodb-org
115+
- yum/redhat/9Server/mongodb-org
116+
109117
- name: amazon
110118
type: rpm
111119
edition: org
@@ -252,6 +260,20 @@ repos:
252260
repos:
253261
- apt/ubuntu/dists/focal/mongodb-org
254262

263+
- name: ubuntu2204
264+
type: deb
265+
code_name: "jammy"
266+
edition: org
267+
bucket: repo.mongodb.org
268+
component: multiverse
269+
architectures:
270+
- amd64
271+
- i386
272+
- s390x
273+
- arm64
274+
repos:
275+
- apt/ubuntu/dists/jammy/mongodb-org
276+
255277
####################
256278
#
257279
# Enterprise Repos:
@@ -306,6 +328,14 @@ repos:
306328
- yum/redhat/8/mongodb-enterprise
307329
- yum/redhat/8Server/mongodb-enterprise
308330

331+
- name: rhel90
332+
type: rpm
333+
edition: enterprise
334+
bucket: repo.mongodb.com
335+
repos:
336+
- yum/redhat/9/mongodb-enterprise
337+
- yum/redhat/9Server/mongodb-enterprise
338+
309339
- name: amazon
310340
type: rpm
311341
edition: enterprise
@@ -462,3 +492,17 @@ repos:
462492
- arm64
463493
repos:
464494
- apt/ubuntu/dists/focal/mongodb-enterprise
495+
- name: ubuntu2204
496+
type: deb
497+
code_name: "jammy"
498+
edition: enterprise
499+
bucket: repo.mongodb.com
500+
component: multiverse
501+
architectures:
502+
- amd64
503+
- ppc64el
504+
- i386
505+
- s390x
506+
- arm64
507+
repos:
508+
- apt/ubuntu/dists/jammy/mongodb-enterprise

tools/genevergreen/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const (
3232
)
3333

3434
var (
35-
serverVersions = []string{"4.2", "4.4", "5.0"}
35+
serverVersions = []string{"4.2", "4.4", "5.0", "6.0"}
3636
oses = []string{"amazonlinux2", "centos7", "centos8", "rhel9", "debian9", "debian10", "ubuntu18.04", "ubuntu20.04", "ubuntu22.04"}
3737
repos = []string{"org", "enterprise"}
3838
postPkgImg = map[string]string{

0 commit comments

Comments
 (0)