node {
    stage('checkout') {
        cleanWs()
        checkout scm
    }
    stage("test") {
        sh 'make test'
    }
}
