We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40b87a2 commit 1e6cef4Copy full SHA for 1e6cef4
.github/workflows/homebrew.yml
@@ -3,6 +3,7 @@ name: "Smoke Test Homebrew install"
3
on:
4
schedule:
5
- cron: "0 0 * * *"
6
+ workflow_dispatch:
7
8
permissions:
9
contents: read
@@ -20,7 +21,8 @@ jobs:
20
21
run: brew install mongosh
22
23
- name: Run smoke tests
- 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'
26
27
- name: Report failure
28
if: ${{ failure() }}
0 commit comments