Skip to content

Commit

Permalink
Build remill against LLVM 16 on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ekilmer committed May 18, 2023
1 parent 3f9c25d commit 633ac47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/vcpkg_ci_amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
- name: 'Remill dependencies'
shell: 'bash'
if: contains(matrix.llvm, 'llvm-15') && matrix.target_arch == 'x64'
if: matrix.target_arch == 'x64'
working-directory: remill
run: |
python3 -m pip install poetry
Expand All @@ -207,7 +207,7 @@ jobs:
- name: 'Remill build'
shell: 'bash'
if: contains(matrix.llvm, 'llvm-15') && matrix.target_arch == 'x64'
if: matrix.target_arch == 'x64'
working-directory: remill
run: |
if [[ '${{ matrix.image.tag }}' == '20.04' ]]; then
Expand All @@ -228,7 +228,7 @@ jobs:
- name: 'Remill test'
shell: 'bash'
working-directory: remill/build
if: contains(matrix.llvm, 'llvm-15') && matrix.target_arch == 'x64'
if: matrix.target_arch == 'x64'
run: |
# Some tests fail on ubuntu 22.04
env CTEST_OUTPUT_ON_FAILURE=1 ctest . || true
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/vcpkg_ci_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ jobs:
- name: 'Remill dependencies'
shell: 'bash'
working-directory: remill
if: matrix.target_arch == 'x64'
run: |
python3 -m pip install poetry
python3 -m pip install --user ./scripts/diff_tester_export_insns
Expand Down

0 comments on commit 633ac47

Please sign in to comment.