Skip to content

Commit 5ab383f

Browse files
Dan Gohmanjohn-sharratt
authored andcommitted
Install libtinfo5 on ubuntu. (WebAssembly#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 4365e52 commit 5ab383f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/main.yml

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

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

0 commit comments

Comments
 (0)