Explicitly install LLDB in CI to fix intermittent failure on 20.04 image.
This commit is contained in:
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
@@ -287,19 +287,21 @@ jobs:
|
|||||||
|
|
||||||
# Test debug (DWARF) related functionality.
|
# Test debug (DWARF) related functionality.
|
||||||
- run: |
|
- 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
|
cargo test test_debug_dwarf -- --ignored --test-threads 1
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
env:
|
env:
|
||||||
RUST_BACKTRACE: 1
|
RUST_BACKTRACE: 1
|
||||||
|
LLDB: /usr/bin/lldb
|
||||||
|
|
||||||
# Test debug (DWARF) related functionality on new backend.
|
# Test debug (DWARF) related functionality on new backend.
|
||||||
- run: |
|
- 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::
|
cargo test --features experimental_x64 test_debug_dwarf -- --ignored --test-threads 1 --test debug::
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
env:
|
env:
|
||||||
RUST_BACKTRACE: 1
|
RUST_BACKTRACE: 1
|
||||||
|
LLDB: /usr/bin/lldb
|
||||||
|
|
||||||
# Test uffd functionality on Linux
|
# Test uffd functionality on Linux
|
||||||
- run: |
|
- run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user