Update 'Jenkinsfile_dataset_stats'

This commit is contained in:
Patryk Gałka 2023-04-18 20:37:10 +02:00
parent 7b962bdb3a
commit ac3214e063

View File

@ -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'
}
}
}
}