From 0896264c717d516b05b066deb36df4060f09688a Mon Sep 17 00:00:00 2001 From: Anonymus Raccoon Date: Thu, 7 May 2020 15:41:50 +0200 Subject: [PATCH] Adding the ncurses to the CI --- .github/workflows/build.yml | 2 ++ .github/workflows/functional.yml | 2 ++ .github/workflows/tests.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 36ed08e..a0580e2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,5 +8,7 @@ jobs: steps: - uses: actions/checkout@v1 + - name: Install the ncurses + run: sudo apt-get install --yes libncurses5-dev libncursesw5-dev - name: Build with Makefile run: make fclean && make clean && make re && make \ No newline at end of file diff --git a/.github/workflows/functional.yml b/.github/workflows/functional.yml index 3e690e7..51363ab 100644 --- a/.github/workflows/functional.yml +++ b/.github/workflows/functional.yml @@ -8,5 +8,7 @@ jobs: steps: - uses: actions/checkout@v1 + - name: Install the ncurses + run: sudo apt-get install --yes libncurses5-dev libncursesw5-dev - name: Build with Makefile & Execute tests run: make func \ No newline at end of file diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5f861c4..559661c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,6 +12,8 @@ jobs: uses: actions/setup-python@v1 with: python-version: '3.x' + - name: Install the ncurses + run: sudo apt-get install --yes libncurses5-dev libncursesw5-dev - name: Install Criterion run: sudo add-apt-repository ppa:snaipewastaken/ppa && sudo apt-get update &&