#!/usr/bin/env groovy
@Library('flexo-libs')_
pipeline {
    agent any
    triggers {
        cron(env.BRANCH_NAME == 'master' ? '12 6 * * *' : '')
    }
    options {
        timestamps()
            ansiColor('xterm')
    }
    stages {
        stage('Build') {
            steps {
                sh "./build.sh"
            }
        }
    }
}
