From b1854f251e451bebad1db2ca76cf9199233c3f1a Mon Sep 17 00:00:00 2001 From: lethosor Date: Fri, 17 Sep 2021 17:37:36 -0400 Subject: [PATCH] Install libncursesw6 In the past week, run-tests.py has started failing due to an ncurses issue on Ubuntu 20.04, logged to stdout: ``` Didn't find any flavor of libncursesw, attempting libncurses Symbol not found: waddnwstr ``` --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f79ffeca6..9f28d58e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,6 +30,7 @@ jobs: sudo apt-get update sudo apt-get install \ libgtk2.0-0 \ + libncursesw6 \ libsdl-image1.2-dev \ libsdl-ttf2.0-dev \ libsdl1.2-dev \