Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions buildkite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ projects=(
"LaurentTreguier/dls" # 1m55s
"eBay/tsv-utils" # 1m41s
"dlang-community/D-Scanner" # 1m40s
"dlang/druntime" # 1m18s
"dlang-tour/core" # 1m17s
"d-widget-toolkit/dwt" # 1m16s
"rejectedsoftware/diet-ng" # 56s
Expand Down
6 changes: 5 additions & 1 deletion buildkite/build_project.sh
Original file line number Diff line number Diff line change
Expand Up @@ -250,14 +250,18 @@ case "$REPO_FULL_NAME" in
ninja -j2 ldc2 druntime-ldc phobos2-ldc
;;

dlang/dmd | \
dlang/druntime | \
dlang/phobos)
"$DIR"/clone_repositories.sh
# To avoid running into "Path too long" issues, see e.g. https://github.com/dlang/ci/pull/287
export TMP="/tmp/${BUILDKITE_AGENT_NAME}"
export TEMP="$TMP"
export TMPDIR="$TMP"
rm -rf "$TMP" && mkdir -p "$TMP"
cd phobos && make -f posix.mak -j2 buildkite-test
# patch makefile which requires gdb 8 - see https://github.com/dlang/ci/pull/301
sed "s/TESTS+=rt_trap_exceptions_drt_gdb//" -i druntime/test/exceptions/Makefile
cd "$(basename "${REPO_FULL_NAME}")"&& make -f posix.mak clean && make -f posix.mak -j2 buildkite-test
rm -rf "$TMP"
;;

Expand Down