Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/stable' into merge_stable
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuclaw committed Jan 9, 2025
2 parents bef2337 + d3f2ee3 commit f92d137
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.110.0-beta.1
v2.110.0-rc.1
21 changes: 21 additions & 0 deletions ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,27 @@ test_druntime() {
# build and run Phobos unit tests
test_phobos() {
make -j$N -C ../phobos MODEL=$MODEL unittest

if [ "$OS_NAME" == "windows" ]; then
echo "FIXME: Skipping publictests on Windows (test failures)"
elif [ "${HOST_DMD:0:5}" == "gdmd-" ]; then
echo "Skipping publictests with GDC host compiler (no installed dub)"
elif [ "$HOST_DMD" == "dmd-2.079.0" ]; then
echo "Skipping publictests with DMD v2.079 host compiler (dub too old)"
else
source ~/dlang/*/activate # activate host compiler - need dub

make -j$N -C ../phobos MODEL=$MODEL publictests
make -j$N -C ../phobos MODEL=$MODEL publictests NO_BOUNDSCHECKS=1

if [ "$OS_NAME" == "osx" ]; then
echo "FIXME: Skipping betterc on macOS (Apple linker assertions)"
else
make -j$N -C ../phobos MODEL=$MODEL betterc
fi

deactivate # deactivate host compiler
fi
}

# test dub package
Expand Down

0 comments on commit f92d137

Please sign in to comment.