summaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
blob: 824cea47554fc820e21b3712225cefaffd57f3d6 (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: '.']]

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