@Library('jenkins-shared-library') _
log.info("xxx")
log.parallelize(111)

pipeline {
    agent any

    stages {
        stage('Build') {
            steps {
                script {
                    def yamlFile = readFile('project.yaml')
                    echo "Building ${yamlFile} version ${yamlFile}"
                }
            }
        }
    }
}