X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=.travis.yml;h=dedc4193d1cf84764fcb3da7639e92ee597dc2ac;hb=fewer-queries;hp=3de1f048367516c01bc8bae2ec9f30763dfdf31d;hpb=4ef0f7f724d1600517ca82ece7fc4e1999efbe00;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/.travis.yml b/.travis.yml index 3de1f04..dedc419 100644 --- a/.travis.yml +++ b/.travis.yml @@ -68,10 +68,15 @@ x_disabled_notifications: language: perl perl: - - "5.18" + - 5.20-extras + - "5.20" # needs quoting due to trailing zero + - 5.18-extras + - 5.18 env: - - CLEANTEST=false + - CLEANTEST=false DBICTEST_DB2=true + - CLEANTEST=false DBICTEST_ORA=true + - CLEANTEST=false DBICTEST_FIREBIRD=true - CLEANTEST=false DBICTEST_MYSQL_INNODB=1 - CLEANTEST=true @@ -223,6 +228,10 @@ matrix: - perl: bleadperl - perl: devcpan_bleadperl_thr_mb + # Several upstream deps are flaky on 5.8.3 + - perl: 5.8.3_nt + - perl: 5.8.3_nt_mb + # sourcing the files is *EXTREMELY* important - otherwise # no envvars will survive @@ -231,42 +240,57 @@ matrix: # console output before_install: + # common functions for all run phases below + # + # this is an exporter - sourcing it is crucial + # among other things it also sets -e + # + - source maint/travis-ci_scripts/common.bash + # Sets global envvars, downloads/configures debs based on CLEANTEST # Sets extra DBICTEST_* envvars # + # this is an exporter - sourcing it is crucial + # - source maint/travis-ci_scripts/10_before_install.bash install: # Build and switch to a custom perl if requested # Configure the perl env, preinstall some generic toolchain parts # + # this is an exporter - sourcing it is crucial + # - source maint/travis-ci_scripts/20_install.bash +### +### From this point on -e is *unset*, rely on travis' error handling +### + - set +e + before_script: # Preinstall/install deps based on envvars/CLEANTEST # - - source maint/travis-ci_scripts/30_before_script.bash + # need to invoke the after_failure script manually + # because 'after_failure' runs only after 'script' fails + # + - maint/getstatus maint/travis-ci_scripts/30_before_script.bash || ( maint/travis-ci_scripts/50_after_failure.bash && /bin/false ) script: # Run actual tests # - - source maint/travis-ci_scripts/40_script.bash + - maint/getstatus maint/travis-ci_scripts/40_script.bash after_success: - # Check if we can assemble a dist properly if not in CLEANTEST - # skipped for now - # - source maint/travis-ci_scripts/50_after_success.bash + # No tasks yet + # + # - maint/getstatus maint/travis-ci_scripts/50_after_success.bash after_failure: - # No tasks yet + # Final sysinfo printout on fail # - #- source maint/travis-ci_scripts/50_after_failure.bash + - maint/getstatus maint/travis-ci_scripts/50_after_failure.bash after_script: # No tasks yet # - #- source maint/travis-ci_scripts/60_after_script.bash - - # if we do not unset this before we terminate the travis teardown will - # mark the entire job as failed - - set +e + #- maint/getstatus maint/travis-ci_scripts/60_after_script.bash