À l'intérieur d'un script groovy (pour un jenkins pipeline): Comment puis-je exécuter un bash
de commande au lieu d'un sh
commande?
J'ai essayé ce qui suit:
Appel "#!/bin/bash
" à l'intérieur de l' sh
appel:
stage('Setting the variables values') {
steps {
sh '''
#!/bin/bash
echo "hello world"
'''
}
}
Remplacer l' sh
appel avec un bash
appel:
stage('Setting the variables values') {
steps {
bash '''
#!/bin/bash
echo "hello world"
'''
}
}
Infos Supplémentaires:
Ma commande est plus complexe qu'un echo hello world
.