From 02c8293ee39156ae80615bc18cdc2cc9cb33c817 Mon Sep 17 00:00:00 2001 From: Alexander Naumov Date: Tue, 13 Jun 2023 17:58:03 +0200 Subject: [PATCH] apline linux: install ncurses-dev --- .github/workflows/alpine_aarch64.yml | 4 ++-- .github/workflows/alpine_riscv64.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/alpine_aarch64.yml b/.github/workflows/alpine_aarch64.yml index 76c3160..67d44f2 100644 --- a/.github/workflows/alpine_aarch64.yml +++ b/.github/workflows/alpine_aarch64.yml @@ -61,8 +61,8 @@ jobs: apk update echo "-----------------------------------------------------" - echo "> apk add git autoconf automake make gcc clang" - apk add git autoconf automake make gcc clang + echo "> apk add git autoconf automake ncurses-dev make gcc clang" + apk add git autoconf automake ncurses-dev make gcc clang echo "-----------------------------------------------------" echo "> autoconf --version" diff --git a/.github/workflows/alpine_riscv64.yml b/.github/workflows/alpine_riscv64.yml index 96f8ccb..0fde478 100644 --- a/.github/workflows/alpine_riscv64.yml +++ b/.github/workflows/alpine_riscv64.yml @@ -61,7 +61,7 @@ jobs: echo "-----------------------------------------------------" echo "> apk add git autoconf automake make gcc clang" - apk add git autoconf automake make gcc clang + apk add git autoconf automake make ncurses-dev gcc clang echo "-----------------------------------------------------" echo "> autoconf --version"