summaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
blob: 23e72468592866a0c964caadfcd95dc46dc0f86e (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 generator: 'Make',
                    buildDir: 'build',
                    sourceDir: 'src',
                    installation: 'InSearchPath'
                archiveArtifacts artifacts: 'Lox.jar',
                    fingerprint: false,
                    onlyIfSuccessful: true
            }
        }
    }
}