From 0df1446209eb11f23238c59b6d406c82a6791611 Mon Sep 17 00:00:00 2001 From: Martin Kinkelin Date: Mon, 7 Sep 2026 15:31:56 +0200 Subject: [PATCH 1/2] Try to fix dstep build with new libclang.so --- buildkite/build_project.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/buildkite/build_project.sh b/buildkite/build_project.sh index 8dbf687..5f0c39c 100755 --- a/buildkite/build_project.sh +++ b/buildkite/build_project.sh @@ -380,6 +380,12 @@ case "$REPO_FULL_NAME" in dub test ;; + jacob-carlborg/dstep) + # help it find libclang.so + ./configure --llvm-path=/usr/lib/llvm-18 + use_travis_test_script + ;; + *) use_travis_test_script ;; From 79439878b1672c9efd53bd4414b4e232ad617772 Mon Sep 17 00:00:00 2001 From: Martin Kinkelin Date: Mon, 7 Sep 2026 16:04:37 +0200 Subject: [PATCH 2/2] dstep: Try latest master --- buildkite/build_project.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/buildkite/build_project.sh b/buildkite/build_project.sh index 5f0c39c..fcd0615 100755 --- a/buildkite/build_project.sh +++ b/buildkite/build_project.sh @@ -54,6 +54,10 @@ case "$REPO_URL" in # No tag includes https://github.com/vibe-d/vibe-core/commit/7833e425403c3804054b0bd16eacbf71fc7a28f4 ref_to_use=master ;; + https://github.com/jacob-carlborg/dstep) + # the latest tag from 2023 doesn't seem to support libclang v18 + ref_to_use=master + ;; *) ;; esac