diff --git a/Jenkinsfile b/Jenkinsfile index 90af3524c5..2ee40d5baa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -102,7 +102,7 @@ pipeline { parameters { booleanParam( name: 'NIGHTLY', - defaultValue: false, + defaultValue: true, description: 'Run tests on all agents and environment including: FIPS' ) string( @@ -272,6 +272,7 @@ pipeline { // Run outside parallel block to avoid external pressure stage('RSpec - Standard agent tests') { steps { + sh 'docker version && docker-compose version' sh 'ci/test rspec' } } @@ -1049,6 +1050,7 @@ def conjurTests() { ], "api": [ "API - ${env.STAGE_NAME}": { + sh 'docker version && docker-compose version' sh 'ci/test api' } ], diff --git a/gems/policy-parser/test.sh b/gems/policy-parser/test.sh index c112d54034..4688d447bb 100755 --- a/gems/policy-parser/test.sh +++ b/gems/policy-parser/test.sh @@ -13,11 +13,11 @@ main() { # internal functions build() { - docker-compose build --pull + docker compose build --pull } run_tests() { - docker-compose run test "$@" + docker compose run test "$@" } main "$@"