Skip to content

Commit 697d5f8

Browse files
authored
Install libtinfo5 on ubuntu. (#349)
We download LLVM releases built for Ubuntu 18 because LLVM doesn't always have builds for different versions, but the builds we use depend on libtinfo5 which isn't installed on Ubuntu 20 by default. So install it.
1 parent 2bb5abe commit 697d5f8

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ jobs:
1515
with:
1616
submodules: true
1717

18+
- name: Install libtinfo5
19+
run: |
20+
set -ex
21+
sudo apt-get update
22+
sudo apt-get install -y libtinfo5
23+
if: matrix.os == 'ubuntu-latest'
24+
1825
- name: Install LLVM tools (Windows)
1926
shell: bash
2027
run: |

0 commit comments

Comments
 (0)