diff --git a/Jenkinsfile b/Jenkinsfile index 0352999..a3b308b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,29 +1,28 @@ -pipeline { - agent any - //Definijuemy parametry, które będzie można podać podczas wywoływania zadania - parameters { - string ( - defaultValue: 'Hello World!', - description: 'Tekst, którym chcesz przywitać świat', - name: 'INPUT_TEXT', - trim: false - ) - } - stages { - stage('Hello') { - steps { - //Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!) - echo "INPUT_TEXT: ${INPUT_TEXT}" - //Wywołaj w konsoli komendę "figlet", która generuje ASCI-art - sh "figlet \"${INPUT_TEXT}\" | tee output.txt" - } - } - stage('Goodbye!') { - steps { - echo 'Goodbye!' - //Zarchiwizuj wynik - archiveArtifacts 'output.txt' - } - } - } +pipeline{ + agent any + properties([parameters([text(defaultValue: '50', description: 'Number of lines to cutoff', name: 'CUTOFF')])]) + stages{ + stage('Stage 1'){ + steps{ + echo 'Hello World!' + } + } + stage('checkout: Check out from version control'){ + steps{ + checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '321737ab-1c4d-475f-9667-513cf19ba596', url: 'https://git.wmi.amu.edu.pl/s434780/ium_434780.git']]]) + } + } + stage('sh: Shell Script'){ + steps{ + ./script.sh + } + } + stage('Archive artifacts'){ + steps{ + archiveArtifacts 'test.csv' + archiveArtifacts 'dev.csv' + archiveArtifacts 'train.csv' + } + } + } } \ No newline at end of file