pipeline {
    agent any

    options {
        disableConcurrentBuilds()
        timeout(time: 10, unit: "MINUTES")
        ansiColor('xterm')
        timestamps()
    }

    stages {
        stage("build_lint_test") {
            steps {
                sh "make run_ci_docker"
            }
        }
    }
}
