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

pipeline {
    agent any

    stages {
        stage('Build') {
            steps {
                script {
                    def yamlFile = readFile('project.yaml')
                    echo "xxxx"
                    echo yamlFile
                    def xxx = log.wenj(yamlFile)

                    echo "Building ${xxx} "
                }
            }
        }
    }
}