init jenkinsfile

This commit is contained in:
s434765 2021-03-27 17:50:28 +01:00
parent cd7e0040cc
commit e1993936bc
2 changed files with 16 additions and 1 deletions

14
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,14 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo "Hello World"'
sh '''
echo "Multiline shell steps works too"
ls -lah
'''
}
}
}
}

View File

@ -10,7 +10,8 @@ if kaggle datasets download -d sgonkaggle/youtube-trend-with-subscriber && unzip
head -n +1089 data_shuf > data_train head -n +1089 data_shuf > data_train
echo "Shuffled dataset" echo "Shuffled dataset"
wc -l data_shuf wc -l data_shuf
echo "Test dataset" wc -l data_test echo "Test dataset"
wc -l data_test
echo "Dev dataset" echo "Dev dataset"
wc -l data_dev wc -l data_dev
echo "Train dataset" echo "Train dataset"