use python script

This commit is contained in:
Natalia Szymczyk 2023-04-21 13:03:23 +02:00
parent 3ccf2288b1
commit 42a45f6e06
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -20,7 +20,7 @@ pipeline {
}
stage('Script') {
steps {
sh './script.sh'
sh 'python3 main.py'
}
}
stage('ArchiveArtifacts') {

View File

@ -16,7 +16,7 @@ pipeline {
}
stage('Script') {
steps {
sh './script2.sh > output.txt'
sh 'python3 main2.py > output.txt'
}
}
stage('ArchiveArtifacts') {