From b343399ffa3603b0e79adb6854af7161a488fc52 Mon Sep 17 00:00:00 2001 From: JulioV Date: Tue, 5 Jan 2021 19:03:42 -0500 Subject: [PATCH] Add libglpk40 dependency To CI tests, dockerfile and installation Add libglpk40 to dockerfile and installation --- .github/workflows/tests.yaml | 1 + Dockerfile | 1 + docs/setup/installation.md | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index bf2a1557..bc6d7610 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -24,6 +24,7 @@ jobs: - run: echo "RELEASE_VERSION_URL=$(echo $RELEASE_VERSION | sed -e 's/\.//g')" >> $GITHUB_ENV - run : | sudo apt update + sudo apt install libglpk40 # sudo apt install libcurl4-openssl-dev # sudo apt install libssl-dev # sudo apt install libxml2-dev diff --git a/Dockerfile b/Dockerfile index 9ac108ce..2a56186c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ RUN apt update && apt install -y \ libssl-dev \ libxml2-dev \ libmysqlclient-dev \ + libglpk40 \ mysql-server RUN apt-get update && apt-get install -y gnupg RUN apt-get update && apt-get install -y software-properties-common diff --git a/docs/setup/installation.md b/docs/setup/installation.md index a619d17e..bbae8f20 100644 --- a/docs/setup/installation.md +++ b/docs/setup/installation.md @@ -119,6 +119,7 @@ You can install RAPIDS using Docker (the fastest), or native instructions for Ma sudo apt install libcurl4-openssl-dev sudo apt install libssl-dev sudo apt install libxml2-dev + sudo apt install libglpk40 ``` 2. Install MySQL