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 36cbf43 commit 77b891aCopy full SHA for 77b891a
.github/workflows/firestore.yml
@@ -126,14 +126,15 @@ jobs:
126
sanitizers:
127
# Don't run on private repo unless it is a PR.
128
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
129
- # TODO(b/231154868): GRPC 1.44 cause link issues on Mac, moving it to Ubuntu for now and add Mac when it is resolved.
130
- runs-on: ubuntu-latest
131
needs: check
132
133
strategy:
134
matrix:
+ os: [macos-12, ubuntu-latest]
135
sanitizer: [asan, tsan]
136
+ runs-on: ${{ matrix.os }}
137
+
138
env:
139
SANITIZERS: ${{ matrix.sanitizer }}
140
0 commit comments