From 3b2f6ba31dcc473f79b0d1a8579481ccee12302d Mon Sep 17 00:00:00 2001 From: filipecosta90 Date: Sun, 24 Nov 2024 21:28:09 +0000 Subject: [PATCH] using same deps on docker build and build steps of ci smoke test --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b673b2a..2b72ae2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,9 @@ jobs: - name: Install dependencies run: | apt-get -qq update -y - apt-get install lcov autoconf automake pkg-config libevent-dev libpcre3-dev libssl-dev -y + apt-get install -y \ + build-essential autoconf automake libpcre3-dev libevent-dev \ + pkg-config zlib1g-dev libssl-dev libboost-all-dev cmake flex - name: Build run: autoreconf -ivf && ./configure && make -j