.github: add curl-dev dependency for regression tests

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
Joachim Wiberg 2023-02-14 20:38:41 +01:00
parent e36a4e3016
commit 058d3f7597

View file

@ -16,10 +16,10 @@ jobs:
# 1) checkout and compile natively # 1) checkout and compile natively
- name: install cligen - name: install cligen
run: (git clone https://github.com/clicon/cligen.git && cd cligen && ./configure && make && sudo make install) run: (git clone https://github.com/clicon/cligen.git && cd cligen && ./configure && make && sudo make install)
- name: install ssl and nghttp2 - name: install dependencies
run: sudo apt install -y libssl-dev libnghttp2-dev run: sudo apt install -y libssl-dev libnghttp2-dev curl-dev
- name: configure - name: configure
run: ./configure run: ./configure
# 2) Use docker for tests # 2) Use docker for tests
- name: make test # this is docker test - name: make test # this is docker test
run: make test run: make test