Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to include support for LLVM versions 11 and 12. #624

Merged
merged 6 commits into from
Jan 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ build() {
test() {
# System-agnostic path
export PATH="$PATH:/usr/local/opt/llvm/bin:/c/Program Files/LLVM/bin"
${CLANG:-:} --version
${LLVM_LINK:-:} --version
cabal v2-test "$@"
}

Expand Down
14 changes: 13 additions & 1 deletion .github/workflows/crux-llvm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,23 @@ jobs:
build:
runs-on: ${{ matrix.os }}
needs: [outputs]
continue-on-error: ${{ matrix.allow-failure }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest] # , windows-latest]
os: [ubuntu-latest] # , macos-latest] # , windows-latest]
ghc: ["8.6.5", "8.8.4", "8.10.2"]
allow-failure: [false]
include:
- os: macos-latest
ghc: 8.6.5
allow-failure: true
- os: macos-latest
ghc: 8.8.4
allow-failure: true
- os: macos-latest
ghc: 8.10.2
allow-failure: true
# Windows only seems to work on 8.6.5. Others result in
# segfaults or other internal errors.
exclude:
Expand Down
2 changes: 1 addition & 1 deletion dependencies/llvm-pretty