From de59fb203e4bc556b5b4d8ca12b6289f3cea9f3d Mon Sep 17 00:00:00 2001 From: Michael Shaw Date: Thu, 6 Oct 2022 15:51:47 -0400 Subject: [PATCH] foundation with with musl-dev --- Jenkinsfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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' }