From 69f27c06d2412333e3e9572c40ccc2ea5593823a Mon Sep 17 00:00:00 2001 From: Chris Fallin Date: Thu, 18 Mar 2021 10:46:38 -0700 Subject: [PATCH] Explicitly install LLDB in CI to fix intermittent failure on 20.04 image. --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a0db48057f..520014269c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -287,19 +287,21 @@ jobs: # Test debug (DWARF) related functionality. - run: | - sudo apt-get update && sudo apt-get install -y gdb + sudo apt-get update && sudo apt-get install -y gdb lldb cargo test test_debug_dwarf -- --ignored --test-threads 1 if: matrix.os == 'ubuntu-latest' env: RUST_BACKTRACE: 1 + LLDB: /usr/bin/lldb # Test debug (DWARF) related functionality on new backend. - run: | - sudo apt-get update && sudo apt-get install -y gdb + sudo apt-get update && sudo apt-get install -y gdb lldb cargo test --features experimental_x64 test_debug_dwarf -- --ignored --test-threads 1 --test debug:: if: matrix.os == 'ubuntu-latest' env: RUST_BACKTRACE: 1 + LLDB: /usr/bin/lldb # Test uffd functionality on Linux - run: |