Skip to content

Commit 6beebbc

Browse files
committed
(travis) Reorder blead jobs, list perl config args
No functional changes
1 parent d6091da commit 6beebbc

File tree

2 files changed

+26
-24
lines changed

2 files changed

+26
-24
lines changed

.travis.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,27 @@ matrix:
211211
###
212212
# Start of the allow_failures block
213213

214+
# bleadperl with blead CPAN, single thread
215+
- perl: "devcpan_bleadperl_thr_mb"
216+
sudo: required
217+
dist: trusty
218+
env:
219+
- VCPU_USE=1
220+
- CLEANTEST=false
221+
- DEVREL_DEPS=true
222+
- BREWVER=blead
223+
- BREWOPTS="-Duseithreads -Dusemorebits"
224+
225+
# bleadperl with stock CPAN, full depchain test with non-tracing poisoning, single thread
226+
- perl: "bleadperl"
227+
sudo: required
228+
# explicitly do not specify dist - see what the default does
229+
env:
230+
- VCPU_USE=1
231+
- CLEANTEST=true
232+
- POISON_ENV=true
233+
- BREWVER=blead
234+
214235
# threaded oldest possible with blead CPAN
215236
- perl: "devcpan_5.8.1_thr_mb"
216237
sudo: false
@@ -286,41 +307,20 @@ matrix:
286307
- BREWVER=5.12.1
287308
- BREWOPTS="-Duseithreads"
288309

289-
# bleadperl with stock CPAN, full depchain test with non-tracing poisoning, single thread
290-
- perl: "bleadperl"
291-
sudo: required
292-
dist: precise
293-
env:
294-
- VCPU_USE=1
295-
- CLEANTEST=true
296-
- POISON_ENV=true
297-
- BREWVER=blead
298-
299-
# bleadperl with blead CPAN, single thread
300-
- perl: "devcpan_bleadperl_thr_mb"
301-
sudo: required
302-
# explicitly do not specify dist - see what the default does
303-
env:
304-
- VCPU_USE=1
305-
- CLEANTEST=false
306-
- DEVREL_DEPS=true
307-
- BREWVER=blead
308-
- BREWOPTS="-Duseithreads -Dusemorebits"
309-
310310

311311
# which ones of the above can fail
312312
allow_failures:
313313

314314
# these run with various dev snapshots - allowed to fail
315+
- perl: devcpan_bleadperl_thr_mb
316+
- perl: bleadperl
315317
- perl: devcpan_5.8.1_thr_mb
316318
- perl: devcpan_5.8.1
317319
- perl: devcpan_5.8.3_mb
318320
- perl: devcpan_5.8.7_thr
319321
- perl: devcpan_5.8.8_thr_mb
320322
- perl: devcpan_5.10.0_thr_mb
321323
- perl: devcpan_5.12.1_thr
322-
- perl: bleadperl
323-
- perl: devcpan_bleadperl_thr_mb
324324

325325

326326
###

maint/travis-ci_scripts/20_install.bash

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ if [[ -n "$BREWVER" ]] ; then
4545
# BREWSRC="http://stableperl.schmorp.de/dist/stableperl-5.22.0-1.001.tar.gz"
4646
#fi
4747

48-
run_or_err "Compiling/installing Perl $BREWVER (without testing, using ${perlbrew_jopt:-1} threads, may take up to 5 minutes)" \
48+
run_or_err \
49+
"Compiling/installing Perl $BREWVER (without testing, using ${perlbrew_jopt:-1} threads, may take 5+ minutes)
50+
Extra configure options:[ $BREWOPTS ]" \
4951
"perlbrew install --as $TRAVIS_PERL_VERSION --notest --noman --verbose $BREWOPTS -j${perlbrew_jopt:-1} $BREWSRC"
5052

5153
# can not do 'perlbrew use' in the run_or_err subshell above, or a $()

0 commit comments

Comments
 (0)