From e87d06b2b2261ec3a4e3ad0fe6afbb87b0c10a28 Mon Sep 17 00:00:00 2001 From: jolheiser Date: Wed, 21 Dec 2022 12:03:42 -0600 Subject: [PATCH 1/3] fix: add curl-dev to docs pipeline Signed-off-by: jolheiser --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 8a73e84a0005f..f7fa0cb6b8012 100644 --- a/.drone.yml +++ b/.drone.yml @@ -941,7 +941,7 @@ steps: image: plugins/hugo:latest pull: always commands: - - apk add --no-cache make bash curl + - apk add --no-cache make bash curl curl-dev - cd docs - make trans-copy clean build From d93d282f61242fa26060d84d30ad0be1dfc59368 Mon Sep 17 00:00:00 2001 From: John Olheiser Date: Wed, 21 Dec 2022 12:44:10 -0600 Subject: [PATCH 2/3] review: upgrade libcurl --- .drone.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index f7fa0cb6b8012..bf1456ff79675 100644 --- a/.drone.yml +++ b/.drone.yml @@ -941,7 +941,8 @@ steps: image: plugins/hugo:latest pull: always commands: - - apk add --no-cache make bash curl curl-dev + # avoid curl/libcurl mismatch by upgrading libcurl first + - apk upgrade --no-cache libcurl && apk add --no-cache make bash curl - cd docs - make trans-copy clean build From 3d23daf42a02befad020fe7f5e4760e5ac8b8ee3 Mon Sep 17 00:00:00 2001 From: John Olheiser Date: Wed, 21 Dec 2022 12:49:25 -0600 Subject: [PATCH 3/3] review: link upstream issue Co-authored-by: silverwind --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index bf1456ff79675..a0abaa9ccc4cc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -941,7 +941,7 @@ steps: image: plugins/hugo:latest pull: always commands: - # avoid curl/libcurl mismatch by upgrading libcurl first + # https://github.com/drone-plugins/drone-hugo/issues/36 - apk upgrade --no-cache libcurl && apk add --no-cache make bash curl - cd docs - make trans-copy clean build