Mise à jour de 'Jenkinsfile'

This commit is contained in:
dany 2022-08-01 11:31:29 +02:00
parent 35623c8ab6
commit eab77292e9

26
Jenkinsfile vendored
View File

@ -28,19 +28,23 @@ pipeline{
{
stage('Test')
{
sh '''
printenv;
echo $WORKSPACE;
ls -al $WORKSPACE;
find /var/jenkins_home -name "Jenkinsfile";
'''
steps {
sh '''
printenv;
echo $WORKSPACE;
ls -al $WORKSPACE;
find /var/jenkins_home -name "Jenkinsfile";
'''
}
}
stage('Remote SSH') {
sshCommand remote: remote, command: '''
cd $(dirname $(find ~/jenkins/workspace/ant-http@script -name "Jenkinsfile"));
bash test.sh;
'''
sshCommand remote: remote, command: "for i in {1..5}; do echo -n \"Loop \$i \"; date ; sleep 1; done"
steps {
sshCommand remote: remote, command: '''
cd $(dirname $(find ~/jenkins/workspace/ant-http@script -name "Jenkinsfile"));
bash test.sh;
'''
sshCommand remote: remote, command: "for i in {1..5}; do echo -n \"Loop \$i \"; date ; sleep 1; done"
}
}
}
}