Update 'Jenkinsfile'

This commit is contained in:
dany 2022-08-02 18:12:25 +02:00
parent 77b8126aa2
commit 2de077034e

17
Jenkinsfile vendored
View File

@ -7,14 +7,15 @@ remote.allowAnyHosts = true
remote.agent = false
remote.logLevel = 'INFO'
def build_test() {
sh'''
def build_antd()
{
sh '''
cat < EOF > "$WORKSPACE"/build_antd.sh
printenv
echo "Hello $text"
echo $WORKSPACE
ls -al $WORKSPACE
find /var/jenkins_home -name "Jenkinsfile"
uname -a
EOF
'''
docker.image("xsangle/ci-tools:latest-" + env.arch).withRun("bash $WORKSPACE/build_antd.sh")
}
pipeline{
@ -41,9 +42,9 @@ pipeline{
{
steps {
script {
env.text = " every one"
env.arch = "arm64"
}
build_test()
build_antd()
}
}
stage('Remote SSH') {