pipeline { agent { label "c++" } stages { stage('Checkout') { steps { checkout scm } } stage('Build') { steps { sh 'make main' } } } post { always { archiveArtifacts artifacts: 'main' } } } // vim: ft=groovy cindent expandtab tabstop=4 shiftwidth=4