From 19daa51985761f2f71fc11ec3729a1c60d6d1e1d Mon Sep 17 00:00:00 2001 From: Divya Sampath Kumar Date: Mon, 18 Dec 2023 16:34:30 -0800 Subject: [PATCH] Reenable aws sdk tests and libcurl apt installation to get lws debug logs --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index beca50d9b9..90cbca5c8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -509,12 +509,13 @@ jobs: - name: Install dependencies run: | sudo apt clean && sudo apt update + sudo apt-get -y install libcurl4-openssl-dev - name: Build repository run: | # TODO: Remove the following line. This is only a workaround for enabling IPv6, https://github.com/travis-ci/travis-ci/issues/8891. sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6' mkdir build && cd build - cmake .. -DBUILD_TEST=TRUE -DENABLE_AWS_SDK_IN_TESTS=OFF + cmake .. -DBUILD_TEST=TRUE make - name: Run tests run: |