File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ jobs:
197197
198198 - name : ' Remill dependencies'
199199 shell : ' bash'
200- if : contains(matrix.llvm, 'llvm-15') && matrix.target_arch == 'x64'
200+ if : matrix.target_arch == 'x64'
201201 working-directory : remill
202202 run : |
203203 python3 -m pip install poetry
@@ -207,7 +207,7 @@ jobs:
207207
208208 - name : ' Remill build'
209209 shell : ' bash'
210- if : contains(matrix.llvm, 'llvm-15') && matrix.target_arch == 'x64'
210+ if : matrix.target_arch == 'x64'
211211 working-directory : remill
212212 run : |
213213 if [[ '${{ matrix.image.tag }}' == '20.04' ]]; then
@@ -228,7 +228,7 @@ jobs:
228228 - name : ' Remill test'
229229 shell : ' bash'
230230 working-directory : remill/build
231- if : contains(matrix.llvm, 'llvm-15') && matrix.target_arch == 'x64'
231+ if : matrix.target_arch == 'x64'
232232 run : |
233233 # Some tests fail on ubuntu 22.04
234234 env CTEST_OUTPUT_ON_FAILURE=1 ctest . || true
Original file line number Diff line number Diff line change @@ -200,6 +200,7 @@ jobs:
200200 - name : ' Remill dependencies'
201201 shell : ' bash'
202202 working-directory : remill
203+ if : matrix.target_arch == 'x64'
203204 run : |
204205 python3 -m pip install poetry
205206 python3 -m pip install --user ./scripts/diff_tester_export_insns
You can’t perform that action at this time.
0 commit comments