ium_z434686/Jenkinsfile_create_dataset

77 lines
2.2 KiB
Plaintext
Raw Normal View History

2023-04-18 14:40:42 +02:00
pipeline {
2023-04-18 22:13:05 +02:00
agent any
2023-04-18 22:16:24 +02:00
2023-03-25 13:40:54 +01:00
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
2023-04-18 15:53:49 +02:00
parameters{
2023-04-18 15:13:26 +02:00
string(
2023-04-18 19:44:33 +02:00
defaultValue: 'patrykgaka',
2023-04-18 15:13:26 +02:00
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
2023-04-18 16:11:12 +02:00
)
2023-04-18 15:13:26 +02:00
password(
2023-04-18 19:44:33 +02:00
defaultValue: 'd14370cec1714b0cd1ef2875038b5950',
2023-04-18 15:13:26 +02:00
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
2023-04-18 20:21:20 +02:00
string(
defaultValue: '0',
description: 'CUTOFF',
name: 'CUTOFF',
trim: false
)
2023-04-18 15:53:49 +02:00
}
2023-04-18 15:35:14 +02:00
stages {
2023-04-18 19:50:03 +02:00
stage('clear_all') {
2023-03-25 13:40:54 +01:00
steps {
//Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!)
2023-04-18 22:33:34 +02:00
sh 'rm -rf *'
2023-03-25 13:40:54 +01:00
}
}
2023-04-18 17:04:34 +02:00
stage('checkout') {
steps {
//Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!)
2023-04-18 17:17:58 +02:00
sh 'git clone https://git.wmi.amu.edu.pl/s434686/ium_z434686'
2023-04-18 17:04:34 +02:00
}
}
2023-04-18 19:46:24 +02:00
2023-04-18 19:28:43 +02:00
stage('Build') {
2023-04-18 19:30:22 +02:00
steps {
2023-04-18 19:28:43 +02:00
// Run the maven build
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
2023-04-18 19:37:39 +02:00
sh 'kaggle datasets download -d rush4ratio/video-game-sales-with-ratings'
2023-04-18 22:29:23 +02:00
sh 'unzip video-game-sales-with-ratings.zip'
2023-04-18 19:43:50 +02:00
sh 'rm video-game-sales-with-ratings.zip'
2023-04-18 22:29:23 +02:00
sh 'ls -a | tee dataset.csv'
2023-04-18 19:28:43 +02:00
}
2023-04-18 19:30:22 +02:00
}
2023-04-18 19:28:43 +02:00
}
2023-04-18 22:35:37 +02:00
stage('Docker') {
agent {
dockerfile {
2023-04-18 23:05:31 +02:00
filename 'create.dockerfile'
args '-v $HOME:/script'
2023-04-18 22:35:37 +02:00
}
}
steps {
echo 'building docker'
2023-04-19 10:33:54 +02:00
archiveArtifacts 'file.txt'
2023-04-18 22:35:37 +02:00
}
}
2023-04-18 22:46:55 +02:00
2023-04-18 22:31:20 +02:00
2023-04-18 19:46:24 +02:00
stage('Goodbye!') {
steps {
echo 'Goodbye!'
//Zarchiwizuj wynik
2023-04-18 22:34:59 +02:00
//archiveArtifacts 'output.txt'
2023-04-18 20:55:06 +02:00
archiveArtifacts 'dataset.csv'
2023-04-19 10:33:54 +02:00
2023-04-18 19:46:24 +02:00
}
}
2023-03-25 13:40:54 +01:00
}
}