From 058d3f75971dc256a83c05173d57d537de9cee80 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Tue, 14 Feb 2023 20:38:41 +0100 Subject: [PATCH] .github: add curl-dev dependency for regression tests Signed-off-by: Joachim Wiberg --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 354c8dcc1..ddef492d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,10 +16,10 @@ jobs: # 1) checkout and compile natively - name: install cligen run: (git clone https://github.com/clicon/cligen.git && cd cligen && ./configure && make && sudo make install) - - name: install ssl and nghttp2 - run: sudo apt install -y libssl-dev libnghttp2-dev + - name: install dependencies + run: sudo apt install -y libssl-dev libnghttp2-dev curl-dev - name: configure run: ./configure # 2) Use docker for tests - name: make test # this is docker test - run: make test \ No newline at end of file + run: make test