This repository was archived by the owner on Oct 12, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 3
3
build :
4
4
working_directory : ~/druntime
5
5
docker :
6
- - image : circleci/node:4.8.2
7
- parallelism : 2
6
+ - image : circleci/buildpack-deps:18.04
7
+ parallelism : 1
8
8
steps :
9
9
- checkout
10
10
- run :
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ CIRCLE_PROJECT_REPONAME=${CIRCLE_PROJECT_REPONAME:-druntime}
10
10
11
11
case $CIRCLE_NODE_INDEX in
12
12
0) MODEL=64 ;;
13
- 1) MODEL=32 ;;
13
+ 1) MODEL=32 ;; # broken - https://issues.dlang.org/show_bug.cgi?id=19116
14
14
esac
15
15
16
16
download () {
@@ -98,8 +98,7 @@ coverage() {
98
98
# load environment for bootstrap compiler
99
99
source "$(CURL_USER_AGENT=\"$CURL_USER_AGENT \" bash ~/dlang/install.sh dmd-$HOST_DMD_VER --activate)"
100
100
101
- # build dmd and druntime (in debug and release)
102
- make -j$N -C ../dmd/src -f posix.mak MODEL=$MODEL HOST_DMD=$DMD BUILD="debug" all
101
+ # build dmd (release) and druntime (debug)
103
102
make -j$N -C ../dmd/src -f posix.mak MODEL=$MODEL HOST_DMD=$DMD BUILD="release" all
104
103
TEST_COVERAGE="1 " make -j$N -C . -f posix.mak MODEL=$MODEL unittest-debug
105
104
}
You can’t perform that action at this time.
0 commit comments