diff options
author | tastytea | 2020-01-04 11:52:03 +0100 |
---|---|---|
committer | tastytea | 2020-01-04 11:52:03 +0100 |
commit | c0d5bd9537f9b3cb5c6c55026d8336fecb9316f3 (patch) | |
tree | 502889fdbf880fa869c18f68f933fcb32a380186 | |
parent | f59fc561ba15233740830138c0abd94a56bc6760 (diff) | |
download | mastodonpp-c0d5bd9537f9b3cb5c6c55026d8336fecb9316f3.tar mastodonpp-c0d5bd9537f9b3cb5c6c55026d8336fecb9316f3.tar.gz mastodonpp-c0d5bd9537f9b3cb5c6c55026d8336fecb9316f3.zip |
CI: Add libcurl4-openssl-dev to dependencies.
-rw-r--r-- | .drone.yml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ steps: - alias apt-get='rm -f /var/cache/apt/archives/lock && apt-get' - apt-get update -q - apt-get install -qq build-essential cmake - - apt-get install -qq catch + - apt-get install -qq catch libcurl4-openssl-dev - rm -rf build && mkdir -p build && cd build - cmake -G "Unix Makefiles" -DWITH_TESTS=YES .. - make VERBOSE=1 @@ -49,7 +49,7 @@ steps: - alias apt-get='rm -f /var/cache/apt/archives/lock && apt-get' - apt-get update -q - apt-get install -qq build-essential cmake - - apt-get install -qq catch + - apt-get install -qq catch libcurl4-openssl-dev - rm -rf build && mkdir -p build && cd build - cmake -G "Unix Makefiles" -DWITH_TESTS=YES .. - make VERBOSE=1 |