diff --git a/Jenkinsfile b/Jenkinsfile index 0874e207e..e4cd309ca 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,8 +16,8 @@ pipeline { stage('Test') { agent { docker { - //image 'cerc-io/foundation:jenkinscicd' - image 'cerc-io/go-ethereum:jenkinscicd' + image 'cerc-io/foundation:jenkinscicd' + //image 'cerc-io/go-ethereum:jenkinscicd' } } environment { @@ -31,6 +31,8 @@ pipeline { steps { echo 'Testing ...' sh 'env' + sh 'go mod tidy' + sh 'go get -d ./...' sh 'go env' sh 'make test' }