diff --git a/Jenkinsfile_dataset_stats b/Jenkinsfile_dataset_stats index e69de29..0f33583 100644 --- a/Jenkinsfile_dataset_stats +++ b/Jenkinsfile_dataset_stats @@ -0,0 +1,21 @@ +pipeline { + agent any + //Definijuemy parametry, które będzie można podać podczas wywoływania zadania + parameters{} + stages { + stage('clear_all') { + steps { + //Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!) + sh 'rm -rf ium_z434686' + sh 'rm -rf data/' + sh 'rm -rf video-game-sales-with-ratings.zip' + } + } + stage('checkout') { + steps { + //Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!) + sh 'git clone https://git.wmi.amu.edu.pl/s434686/ium_z434686' + } + } + } +} \ No newline at end of file