From bdeee9e628fe7aaed6e06b52ce0084fcea0ee8a1 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Thu, 2 Mar 2023 09:00:41 +0100 Subject: [PATCH] put libtinfo5 install on separate instruction, remove ncurses --- .github/workflows/dynamic_arch.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dynamic_arch.yml b/.github/workflows/dynamic_arch.yml index 853922d42..d098106be 100644 --- a/.github/workflows/dynamic_arch.yml +++ b/.github/workflows/dynamic_arch.yml @@ -37,7 +37,8 @@ jobs: - name: Install Dependencies run: | if [ "$RUNNER_OS" == "Linux" ]; then - sudo apt-get install -y gfortran cmake ccache libtinfo5 ncurses + sudo apt-get install -y libtinfo5 + sudo apt-get install -y gfortran cmake ccache elif [ "$RUNNER_OS" == "macOS" ]; then # It looks like "gfortran" isn't working correctly unless "gcc" is re-installed. brew reinstall gcc