summaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
blob: 385b48327e7543a63a0ae244731643efd8c9d303 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pipeline {
    agent { dockerfile true }

    stages {
        stage('Build') {
            steps {
                cmakeBuild installation: 'InSearchPath',
                    buildDir: 'build',
                    sourceDir: 'src'

                archiveArtifacts artifacts: 'Lox.jar',
                    fingerprint: false,
                    onlyIfSuccessful: true
            }
        }
    }
}