#!groovy pipeline { agent none stages { stage('Tarball') { steps { node('autotools') { checkout scm } } } } }