summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2021-02-02 18:41:49 -0800
committerTom Stellard <tstellar@redhat.com>2021-02-03 13:51:10 -0800
commit85fcd465594700a72b9259bb5805386970fd8a38 (patch)
tree12a39b392a1001199006615a1aae6e382844bf13
parent17e842f3785fe5f585f9adc0f6cacc431d327eee (diff)
downloadllvm-85fcd465594700a72b9259bb5805386970fd8a38.tar.gz
workflows: Re-enable lldb test on Mac OS X
-rw-r--r--.github/workflows/lldb-tests.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/lldb-tests.yml b/.github/workflows/lldb-tests.yml
index 93fddc2de8c6..68aec6036995 100644
--- a/.github/workflows/lldb-tests.yml
+++ b/.github/workflows/lldb-tests.yml
@@ -20,14 +20,16 @@ jobs:
build_lldb:
name: lldb build
runs-on: ${{ matrix.os }}
+ # Workaround for build faliure on Mac OS X: llvm.org/PR46190, https://github.com/actions/virtual-environments/issues/2274
+ env:
+ CPLUS_INCLUDE_PATH: /usr/local/opt/llvm/include/c++/v1:/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- # macOS build disabled due to: llvm.org/PR46190
- #- macOS-latest
+ - macOS-latest
steps:
- name: Setup Windows
if: startsWith(matrix.os, 'windows')