@Library('jenkins-shared-library') _

pipeline {
    agent any

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

                    def xx = xxx.base.module
                    echo xx
                    
                }
            }
        }
    }
}