Skip to content

Commit 83b14d7

Browse files
authored
Revert "fix(build): temporarily remove debian11 publishing (#1283)" (#1287)
* Revert "fix(build): temporarily remove debian11 publishing (#1283)" This reverts commit 4e88ce2. * fix: add debian11 community to repo-config.yml
1 parent 3c9a0f5 commit 83b14d7

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

config/repo-config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ repos:
6666
component: main
6767
architectures:
6868
- amd64
69+
- arm64
6970
repos:
7071
- apt/debian/dists/stretch/mongodb-org
7172

@@ -77,9 +78,22 @@ repos:
7778
component: main
7879
architectures:
7980
- amd64
81+
- arm64
8082
repos:
8183
- apt/debian/dists/buster/mongodb-org
8284

85+
- name: debian11
86+
type: deb
87+
code_name: "bullseye"
88+
bucket: repo.mongodb.org
89+
edition: org
90+
component: main
91+
architectures:
92+
- amd64
93+
- arm64
94+
repos:
95+
- apt/debian/dists/bullseye/mongodb-org
96+
8397
- name: ubuntu1804
8498
type: deb
8599
code_name: "bionic"

packages/build/src/barque.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ describe('Barque', () => {
5151
'https://repo.mongodb.com/apt/debian/dists/stretch/mongodb-enterprise/5.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
5252
'https://repo.mongodb.org/apt/debian/dists/stretch/mongodb-org/6.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
5353
'https://repo.mongodb.com/apt/debian/dists/stretch/mongodb-enterprise/6.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
54-
/* 'https://repo.mongodb.org/apt/debian/dists/bullseye/mongodb-org/4.4/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
54+
'https://repo.mongodb.org/apt/debian/dists/bullseye/mongodb-org/4.4/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
5555
'https://repo.mongodb.com/apt/debian/dists/bullseye/mongodb-enterprise/4.4/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
5656
'https://repo.mongodb.org/apt/debian/dists/bullseye/mongodb-org/5.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
5757
'https://repo.mongodb.com/apt/debian/dists/bullseye/mongodb-enterprise/5.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
5858
'https://repo.mongodb.org/apt/debian/dists/bullseye/mongodb-org/6.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
59-
'https://repo.mongodb.com/apt/debian/dists/bullseye/mongodb-enterprise/6.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb'*/
59+
'https://repo.mongodb.com/apt/debian/dists/bullseye/mongodb-enterprise/6.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb'
6060
]
6161
},
6262
{

packages/build/src/barque.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export function getReposAndArch(buildVariant: BuildVariant): { ppas: PPAReposito
4242
return { ppas: [], arch: '' };
4343
case 'debian':
4444
return {
45-
ppas: ['ubuntu1804', 'ubuntu2004', 'debian92', 'debian10'/* , 'debian11'*/],
45+
ppas: ['ubuntu1804', 'ubuntu2004', 'debian92', 'debian10', 'debian11'],
4646
arch: getDebArchName(getArch(buildVariant))
4747
};
4848
case 'rhel7':

0 commit comments

Comments
 (0)