steps are not shell

This commit is contained in:
Michael Shaw
2022-10-04 14:21:11 -04:00
parent b0b7a0de72
commit 3f2e8e1c35
Vendored
+5 -3
View File
@@ -10,9 +10,11 @@ pipeline {
}
}
steps {
echo 'Building ...'
docker build -t cerc-io/go-ethereum .
echo 'built geth'
docker.withRegistry('https://git.vdb.to'){
echo 'Building ...'
def geth_image = docker.build("cerc-io/go-ethereum")
echo 'built geth'
}
}
}
stage('Test') {