summaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: f452d6b2c4f32c0d5732a68c6ab5e2ca09d77d24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pipeline {
    agent { label "c++" }

    stages {
        stage('Checkout') {
            steps {
                checkout scm
            }
        }
        stage('Build') {
            steps {
                sh 'make main'
            }
        }
    }

    post {
        always {
            archiveArtifacts artifacts: 'main'
        }
    }
}

// vim: ft=groovy cindent expandtab tabstop=4 shiftwidth=4
..