Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions config/repo-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ repos:
component: main
architectures:
- amd64
- arm64
repos:
- apt/debian/dists/stretch/mongodb-org

Expand All @@ -77,9 +78,22 @@ repos:
component: main
architectures:
- amd64
- arm64
repos:
- apt/debian/dists/buster/mongodb-org

- name: debian11
type: deb
code_name: "bullseye"
bucket: repo.mongodb.org
edition: org
component: main
architectures:
- amd64
- arm64
repos:
- apt/debian/dists/bullseye/mongodb-org

- name: ubuntu1804
type: deb
code_name: "bionic"
Expand Down
4 changes: 2 additions & 2 deletions packages/build/src/barque.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ describe('Barque', () => {
'https://repo.mongodb.com/apt/debian/dists/stretch/mongodb-enterprise/5.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
'https://repo.mongodb.org/apt/debian/dists/stretch/mongodb-org/6.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
'https://repo.mongodb.com/apt/debian/dists/stretch/mongodb-enterprise/6.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
/* 'https://repo.mongodb.org/apt/debian/dists/bullseye/mongodb-org/4.4/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
'https://repo.mongodb.org/apt/debian/dists/bullseye/mongodb-org/4.4/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
'https://repo.mongodb.com/apt/debian/dists/bullseye/mongodb-enterprise/4.4/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
'https://repo.mongodb.org/apt/debian/dists/bullseye/mongodb-org/5.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
'https://repo.mongodb.com/apt/debian/dists/bullseye/mongodb-enterprise/5.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
'https://repo.mongodb.org/apt/debian/dists/bullseye/mongodb-org/6.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb',
'https://repo.mongodb.com/apt/debian/dists/bullseye/mongodb-enterprise/6.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb'*/
'https://repo.mongodb.com/apt/debian/dists/bullseye/mongodb-enterprise/6.0/main/binary-amd64/mongodb-mongosh_0.1.0_amd64.deb'
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion packages/build/src/barque.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function getReposAndArch(buildVariant: BuildVariant): { ppas: PPAReposito
return { ppas: [], arch: '' };
case 'debian':
return {
ppas: ['ubuntu1804', 'ubuntu2004', 'debian92', 'debian10'/* , 'debian11'*/],
ppas: ['ubuntu1804', 'ubuntu2004', 'debian92', 'debian10', 'debian11'],
arch: getDebArchName(getArch(buildVariant))
};
case 'rhel7':
Expand Down