From b018e646de37b9cff1b305d69fb8982c13c83d87 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 4fa420105a0d7..7ffa0d2c684d9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -931,7 +931,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 2c9fa4c273a427bb52be0e24d0a6265735f97c76 Mon Sep 17 00:00:00 2001 From: John Olheiser Date: Wed, 21 Dec 2022 12:42:13 -0600 Subject: [PATCH 2/3] review: upgrade libcurl Co-authored-by: silverwind --- .drone.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 7ffa0d2c684d9..0acb534e51894 100644 --- a/.drone.yml +++ b/.drone.yml @@ -931,7 +931,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 39a9f85979426a5dcf35275a820224a31f5d4e31 Mon Sep 17 00:00:00 2001 From: John Olheiser Date: Wed, 21 Dec 2022 12:49:48 -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 0acb534e51894..48ba3e8f97426 100644 --- a/.drone.yml +++ b/.drone.yml @@ -931,7 +931,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