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 82a2ef3 commit d1fb274Copy full SHA for d1fb274
1 file changed
.github/workflows/test.yml
@@ -148,7 +148,14 @@ jobs:
148
# TSAN
149
150
tsan:
151
- runs-on: ubuntu-22.04
+ runs-on: ${{ matrix.os }}
152
+ strategy:
153
+ fail-fast: false
154
+ matrix:
155
+ os:
156
+ - ubuntu-20.04 # TODO remove when TSAN test is fixed
157
+ - ubuntu-22.04
158
+
159
steps:
160
161
- name: Sync repository
@@ -159,7 +166,7 @@ jobs:
166
- name: Download dependencies and install requirements
167
uses: ./src/.github/actions/project_dependencies
168
with:
162
- os: ubuntu-22.04
169
+ os: ${{ matrix.os }}
163
170
cmake_build_type: Release
164
171
dependencies_artifact_postfix: ${{ github.event.inputs.dependencies_artifact_postfix || env.default_dependencies_artifact_postfix }}
165
172
secret_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments