github actions: configure preparations
This commit is contained in:
parent
6bac41890d
commit
ec3c69b9cb
1 changed files with 8 additions and 0 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -13,7 +13,15 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
# 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 libevent
|
||||
run: sudo apt install -y libevent-dev libssl-dev
|
||||
- name: install libevhtp
|
||||
run: (git clone https://github.com/clicon/clixon-libevhtp.git && cd clixon-libevhtp && ./configure && make && sudo make install)
|
||||
- name: configure
|
||||
run: ./configure --with-restconf=native
|
||||
# 2) Use docker for tests
|
||||
- name: make test # this is docker test
|
||||
run: make test
|
||||
Loading…
Add table
Add a link
Reference in a new issue