Skip to content

Commit

Permalink
refactor: Update CI workflow to include additional package installations
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
carlos-rian-qd committed Oct 17, 2024
1 parent fe6f3a0 commit 86d339e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 86d339e

Please sign in to comment.