(travis) Add 5.8.1 dev-testing to avoid crap like RT#99747
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 30_before_script.bash
index 135f319..d327da1 100755 (executable)
@@ -57,6 +57,9 @@ if [[ "$CLEANTEST" = "true" ]]; then
   # handholding
 
   if [[ "$DEVREL_DEPS" == "true" ]] ; then
+    # FIXME - temporary workaround for https://github.com/rjbs/Test-Deep/issues/22
+    installdeps R/RJ/RJBS/Test-Deep-0.113.tar.gz
+
     # We are not "quite ready" for SQLA 1.99, do not consider it
     #
     installdeps 'SQL::Abstract~<1.99'
@@ -93,7 +96,7 @@ else
   parallel_installdeps_notest Test::Exception Encode::Locale Test::Fatal
   parallel_installdeps_notest Test::Warn B::Hooks::EndOfScope Test::Differences HTTP::Status
   parallel_installdeps_notest Test::Pod::Coverage Test::EOL Devel::GlobalDestruction Sub::Name MRO::Compat Class::XSAccessor URI::Escape HTML::Entities
-  parallel_installdeps_notest YAML LWP Class::Trigger JSON::XS DateTime::Format::Builder Class::Accessor::Grouped Package::Variant
+  parallel_installdeps_notest YAML LWP Class::Trigger DateTime::Format::Builder Class::Accessor::Grouped Package::Variant
   parallel_installdeps_notest SQL::Abstract Moose Module::Install JSON SQL::Translator File::Which
 
   # the official version is very much outdated and does not compile on 5.14+
@@ -117,6 +120,9 @@ if [[ "$CLEANTEST" = "true" ]]; then
 
     HARD_DEPS="$(echo $(make listalldeps))"
 
+    # FIXME - temporary workaround for https://github.com/rjbs/Test-Deep/issues/22
+    HARD_DEPS="$(sed 's/Test::Deep//' <<< $HARD_DEPS)"
+
   else
 
     HARD_DEPS="$(echo $(make listdeps))"
@@ -124,6 +130,9 @@ if [[ "$CLEANTEST" = "true" ]]; then
 ##### TEMPORARY WORKAROUNDS needed in case we will be using a fucked CPAN.pm
     if ! CPAN_is_sane ; then
 
+      # FIXME - temporary workaround for https://github.com/rjbs/Test-Deep/issues/22
+      HARD_DEPS="R/RJ/RJBS/Test-Deep-0.113.tar.gz $HARD_DEPS"
+
       # DBD::SQLite reasonably wants DBI at config time
       perl -MDBI -e1 &>/dev/null || HARD_DEPS="DBI $HARD_DEPS"