Update 'Jenkinsfile'
This commit is contained in:
parent
77b8126aa2
commit
2de077034e
21
Jenkinsfile
vendored
21
Jenkinsfile
vendored
@ -7,14 +7,15 @@ remote.allowAnyHosts = true
|
||||
remote.agent = false
|
||||
remote.logLevel = 'INFO'
|
||||
|
||||
def build_test() {
|
||||
sh'''
|
||||
printenv
|
||||
echo "Hello $text"
|
||||
echo $WORKSPACE
|
||||
ls -al $WORKSPACE
|
||||
find /var/jenkins_home -name "Jenkinsfile"
|
||||
'''
|
||||
def build_antd()
|
||||
{
|
||||
sh '''
|
||||
cat < EOF > "$WORKSPACE"/build_antd.sh
|
||||
printenv
|
||||
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') {
|
||||
|
Loading…
Reference in New Issue
Block a user