From 86d339e47e4d33a1da5ae8e77fe25babbb107c19 Mon Sep 17 00:00:00 2001 From: "carlos.rian" Date: Thu, 17 Oct 2024 10:46:36 -0300 Subject: [PATCH] refactor: Update CI workflow to include additional package installations This commit updates the CI workflow in the `.github/workflows/ci.yaml` file. It adds the installation of the `build-essential`, `gcc`, `make`, `libpcre3-dev`, `wget`, `zlib1g-dev`, and `libssl-dev` packages using the `apt install` command. This change ensures that all necessary packages are installed for the CI process. --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 11ca752..84bd189 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -213,6 +213,7 @@ jobs: echo "Detected Debian or Ubuntu" apt update && apt upgrade -y apt install -y pkg-config libssl-dev + apt install -y build-essential gcc make libpcre3-dev wget zlib1g-dev libssl-dev ;; fedora) echo "Detected Fedora"