From 3c41980d513cf16f6e3ecf40aec0d025bb4e8d80 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Thu, 27 Mar 2025 09:18:37 -0400 Subject: [PATCH 1/2] chore(ci): do not expect CSFLE/QE support in homebrew These aren't supported yet. Because my previous commit (1e6cef4a9170e) pinned the version to an enterprise one, rather than a community server, we were now trying to run the CSFLE smoke test but can't. (We could also go back to testing with a community server, but in general the idea of testing enterprise features in smoke tests is not a bad one.) --- .github/workflows/homebrew.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/homebrew.yml b/.github/workflows/homebrew.yml index a7c14379f7..646cb6d78e 100644 --- a/.github/workflows/homebrew.yml +++ b/.github/workflows/homebrew.yml @@ -22,6 +22,9 @@ jobs: - name: Run smoke tests # 8.0.5 due to us having macos-13 in the platform support list, SERVER-101020 + env: + # MONGOSH-1216, MONGOSH-1120 + MONGOSH_NO_AUTOMATIC_ENCRYPTION_SUPPORT=1 run: npx --yes mongodb-runner --version 8.0.5-enterprise -- exec -- sh -c 'env MONGOSH_SMOKE_TEST_SERVER=$MONGODB_URI mongosh --smokeTests' - name: Report failure From 0cb659958a71cfc74c33d12cb71ed153ac256c1d Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Thu, 27 Mar 2025 09:27:05 -0400 Subject: [PATCH 2/2] fixup: proper yaml --- .github/workflows/homebrew.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/homebrew.yml b/.github/workflows/homebrew.yml index 646cb6d78e..3319f21943 100644 --- a/.github/workflows/homebrew.yml +++ b/.github/workflows/homebrew.yml @@ -24,7 +24,7 @@ jobs: # 8.0.5 due to us having macos-13 in the platform support list, SERVER-101020 env: # MONGOSH-1216, MONGOSH-1120 - MONGOSH_NO_AUTOMATIC_ENCRYPTION_SUPPORT=1 + MONGOSH_NO_AUTOMATIC_ENCRYPTION_SUPPORT: 1 run: npx --yes mongodb-runner --version 8.0.5-enterprise -- exec -- sh -c 'env MONGOSH_SMOKE_TEST_SERVER=$MONGODB_URI mongosh --smokeTests' - name: Report failure