Skip to content

Commit 515ddec

Browse files
authored
Install libgnutls within the CI flow (#315)
* Install libgnutls within the CI flow * Installing gnutls only on ubuntu * Simplify SSL priorities list string in test
1 parent 8c21c40 commit 515ddec

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/verify-build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,11 @@ jobs:
375375
sudo apt-get install cppcheck ;
376376
if: ${{ matrix.os-type == 'ubuntu' }}
377377

378+
- name: Setup gnutls dependency (only on linux)
379+
run: |
380+
sudo apt-get install libgnutls28-dev ;
381+
if: ${{ matrix.os-type == 'ubuntu' }}
382+
378383
- name: Fetch libmicrohttpd from cache
379384
id: cache-libmicrohttpd
380385
uses: actions/cache@v2

test/integ/ws_start_stop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ LT_BEGIN_AUTO_TEST(ws_start_stop_suite, ssl_with_protocol_priorities)
445445
.use_ssl()
446446
.https_mem_key("key.pem")
447447
.https_mem_cert("cert.pem")
448-
.https_priorities("NONE:+VERS-TLS1.0:+AES-128-CBC:+SHA1:+RSA:+COMP-NULL");
448+
.https_priorities("NONE:+AES-256-GCM:+SHA384");
449449

450450
ok_resource ok;
451451
ws.register_resource("base", &ok);

0 commit comments

Comments
 (0)