From c3a957392f75c3cbec1e6ce670ad520c53d7b999 Mon Sep 17 00:00:00 2001 From: Martin Kinkelin Date: Tue, 8 Sep 2026 09:59:17 +0200 Subject: [PATCH] Fix dlang-tour/core build with new image By switching from latest tag (3 years old) to master, using openssl v3.3.4 instead of v3.3.0. --- buildkite/build_project.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/buildkite/build_project.sh b/buildkite/build_project.sh index fcd0615..0082600 100755 --- a/buildkite/build_project.sh +++ b/buildkite/build_project.sh @@ -58,6 +58,10 @@ case "$REPO_URL" in # the latest tag from 2023 doesn't seem to support libclang v18 ref_to_use=master ;; + https://github.com/dlang-tour/core) + # the latest tag from 2023 uses a buggy openssl dub-package version + ref_to_use=master + ;; *) ;; esac