changed Jenkinsfile

This commit is contained in:
s464906 2024-03-26 20:11:18 +01:00
parent 4d73f67dd7
commit 9dc2f55ed7

50
Jenkinsfile vendored
View File

@ -1,29 +1,23 @@
pipeline { pipeline {
agent any agent any
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
parameters { stages {
string ( stage('Clone repository') {
defaultValue: 'Hello World!', steps {
description: 'Tekst, którym chcesz przywitać świat', checkout([$class: 'GitSCM', branches: [[name: '*/master']], userRemoteConfigs: [[url: 'https://github.com/your/repo.git']]])
name: 'INPUT_TEXT', }
trim: false }
) stage('Run shell script') {
} steps {
stages { script {
stage('Hello') { sh './scripts/data_processing.sh'
steps { }
//Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!) }
echo "INPUT_TEXT: ${INPUT_TEXT}" post {
//Wywołaj w konsoli komendę "figlet", która generuje ASCII-art always {
sh "figlet \"${INPUT_TEXT}\" | tee output.txt" archiveArtifacts artifacts: 'results.txt', allowEmptyArchive: true
} }
} }
stage('Goodbye!') { }
steps { }
echo 'Goodbye!' }
//Zarchiwizuj wynik
archiveArtifacts 'output.txt'
}
}
}
}