Skip to content

Commit

Permalink
chore(ci): set minimum macOs version to 10.15+ COMPASS-7990 (#5885)
Browse files Browse the repository at this point in the history
feat(release): set minimum macOs supported version to 10.15+ COMPASS-7990
  • Loading branch information
mcasimir authored Jun 10, 2024
1 parent 07f69c5 commit 0e76a87
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/hadron-build/commands/upload.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function readablePlatformName(arch, platform, fileName = '') {

switch (`${platform}-${arch}`) {
case 'darwin-x64':
name = 'macOS 64-bit (10.14+)';
name = 'macOS 64-bit (10.15+)';
break;
case 'darwin-arm64':
name = 'macOS arm64 (M1) (11.0+)';
Expand Down
8 changes: 4 additions & 4 deletions packages/hadron-build/test/upload.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('upload', function() {
describe('readablePlatformName', function() {
it('returns a pretty-printed platform / arch label', function() {
expect(readablePlatformName('x64', 'darwin')).to.eq(
'macOS 64-bit (10.14+)'
'macOS 64-bit (10.15+)'
);
});

Expand All @@ -69,7 +69,7 @@ describe('upload', function() {
arch: 'x64',
download_link:
'https://downloads.mongodb.com/compass/mongodb-compass-1.0.0-darwin-x64.dmg',
name: 'macOS 64-bit (10.14+)',
name: 'macOS 64-bit (10.15+)',
os: 'darwin'
},
{
Expand Down Expand Up @@ -124,7 +124,7 @@ describe('upload', function() {
arch: 'x64',
download_link:
'https://downloads.mongodb.com/compass/mongodb-compass-readonly-1.0.0-darwin-x64.dmg',
name: 'macOS 64-bit (10.14+)',
name: 'macOS 64-bit (10.15+)',
os: 'darwin'
},
{
Expand Down Expand Up @@ -179,7 +179,7 @@ describe('upload', function() {
arch: 'x64',
download_link:
'https://downloads.mongodb.com/compass/mongodb-compass-isolated-1.0.0-darwin-x64.dmg',
name: 'macOS 64-bit (10.14+)',
name: 'macOS 64-bit (10.15+)',
os: 'darwin'
},
{
Expand Down

0 comments on commit 0e76a87

Please sign in to comment.