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

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

                archiveArtifacts artifacts: 'build/com/craftinginterpreters/lox/Lox.jar',
                    fingerprint: false,
                    onlyIfSuccessful: true
            }
        }
    }
}