Skip to content

Commit 77b891a

Browse files
authored
Run ASAN and TSAN on both macOS and ubuntu (#10310)
1 parent 36cbf43 commit 77b891a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/firestore.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,15 @@ jobs:
126126
sanitizers:
127127
# Don't run on private repo unless it is a PR.
128128
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
131129
needs: check
132130

133131
strategy:
134132
matrix:
133+
os: [macos-12, ubuntu-latest]
135134
sanitizer: [asan, tsan]
136135

136+
runs-on: ${{ matrix.os }}
137+
137138
env:
138139
SANITIZERS: ${{ matrix.sanitizer }}
139140

0 commit comments

Comments
 (0)