Skip to content

Commit 633ac47

Browse files
committed
Build remill against LLVM 16 on Linux
1 parent 3f9c25d commit 633ac47

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/vcpkg_ci_amd64.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/vcpkg_ci_mac.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)