Skip to content

Commit 1e6cef4

Browse files
authored
chore(ci): pin to MongoDB 8.0.5 in homebrew smoke test (#2419)
Since it's a smoke test, we don't really need to worry about the specific server version and can just remove this again once we drop macOS 13.
1 parent 40b87a2 commit 1e6cef4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/homebrew.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: "Smoke Test Homebrew install"
33
on:
44
schedule:
55
- cron: "0 0 * * *"
6+
workflow_dispatch:
67

78
permissions:
89
contents: read
@@ -20,7 +21,8 @@ jobs:
2021
run: brew install mongosh
2122

2223
- name: Run smoke tests
23-
run: npx --yes mongodb-runner -- exec -- sh -c 'env MONGOSH_SMOKE_TEST_SERVER=$MONGODB_URI mongosh --smokeTests'
24+
# 8.0.5 due to us having macos-13 in the platform support list, SERVER-101020
25+
run: npx --yes mongodb-runner --version 8.0.5-enterprise -- exec -- sh -c 'env MONGOSH_SMOKE_TEST_SERVER=$MONGODB_URI mongosh --smokeTests'
2426

2527
- name: Report failure
2628
if: ${{ failure() }}

0 commit comments

Comments
 (0)