summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Cooper <J.L.Cooper@lboro.ac.uk>2020-09-18 08:25:33 +0100
committerJason Cooper <J.L.Cooper@lboro.ac.uk>2020-09-18 08:25:33 +0100
commita51ea6c6712be652b778956858fdf38d2ea3ed89 (patch)
tree00a5d3d60c6637dc7e42c0ac9022e80bbae5b929
parenta44a00b4ae4d59a70d3b3126e36adbd43770efda (diff)
Added in logic to test an older version of DBI before testing the latest
-rw-r--r--.gitlab-ci.yml28
1 files changed, 27 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e24b8d5..2930527 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,7 @@ stages:
- test
before_script:
- - cpanm Module::Build::Tiny Test::Pod Test::Pod::Coverage
+ - cpanm Module::Build::Tiny Test::Pod Test::Pod::Coverage DBI@1.627
- cpanm --installdeps .
- perl Build.PL
- perl Build
@@ -12,75 +12,101 @@ unitTestsLatest:
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test
unitTestsV5.30:
image: perl:5.30-threaded
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test
unitTestsV5.28:
image: perl:5.28-threaded
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test
unitTestsV5.26:
image: perl:5.26-threaded
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test
unitTestsV5.24:
image: perl:5.24-threaded
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test
unitTestsV5.22:
image: perl:5.22-threaded
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test
unitTestsV5.20:
image: perl:5.20-threaded
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test
unitTestsV5.18:
image: perl:5.18-threaded
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test
unitTestsV5.16:
image: perl:5.16-threaded
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test
unitTestsV5.14:
image: perl:5.14-threaded
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test
unitTestsV5.12:
image: perl:5.12-threaded
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test
unitTestsV5.10:
image: perl:5.10-threaded
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test
unitTestsV5.8:
image: perl:5.8-threaded
stage: test
script:
- REPORT_TEST_ENVIRONMENT=1 perl Build test
+ - cpanm DBI
+ - REPORT_TEST_ENVIRONMENT=1 perl Build test