diff --git a/buildkite/build_project.sh b/buildkite/build_project.sh index 8dbf687..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 @@ -380,6 +384,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 ;;