Skip to content

Commit

Permalink
fix(build): temporarily remove debian11 publishing (#1283)
Browse files Browse the repository at this point in the history
Curator cannot yet upload artifacts for Debian 11.
  • Loading branch information
addaleax authored May 11, 2022
1 parent a0efa8b commit 4e88ce2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 4e88ce2

Please sign in to comment.