node {
        stage('Checkout') {
            checkout
        }

        stage('Build') {
            sh("make")
        }
}
