ci: run ldconfig after install libwebsockets

This commit is contained in:
Shuanglei Tao
2019-12-05 23:51:37 +08:00
parent cfd338ea5e
commit 48083b108c
2 changed files with 3 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ jobs:
curl -sLo- https://github.com/warmcat/libwebsockets/archive/v${LWS_VERSION}.tar.gz | tar xz
cd libwebsockets-${LWS_VERSION}
cmake -DLWS_WITH_LIBUV=ON -DLWS_UNIX_SOCK=ON -DLWS_IPV6=ON -DLWS_WITHOUT_TESTAPPS=ON -DCMAKE_BUILD_TYPE=RELEASE .
make && sudo make install
make && sudo make install && sudo ldconfig
- uses: actions/checkout@v1
- name: build ttyd
run: |