bash script

This commit is contained in:
Natalia Szymczyk 2023-04-20 22:45:53 +02:00
parent dc49ea1583
commit 684c1bb274
2 changed files with 24 additions and 17 deletions

36
Jenkinsfile vendored
View File

@ -1,28 +1,30 @@
pipeline {
agent any
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
parameters {
string (
defaultValue: 'Hello World!',
description: 'To jest tekst, którym chce przywitać świat',
name: 'INPUT_TEXT',
trim: false
)
}
// parameters {
// string (
// defaultValue: 'Hello World!',
// description: 'To jest tekst, którym chce przywitać świat',
// name: 'INPUT_TEXT',
// trim: false
// )
// }
stages {
stage('Hello') {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Script') {
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"
sh './script.sh'
}
}
stage('Goodbye!') {
stage('ArchiveArtifacts!') {
steps {
echo 'Goodbye!'
//Zarchiwizuj wynik
archiveArtifacts 'output.txt'
archiveArtifacts 'liver.data.train'
archiveArtifacts 'liver.data.test'
archiveArtifacts 'liver.data.dev'
}
}
}

5
script.sh Executable file
View File

@ -0,0 +1,5 @@
curl -o liver.data 'https://archive.ics.uci.edu/ml/machine-learning-databases/00225/Indian%20Liver%20Patient%20Dataset%20(ILPD).csv'
sort -R liver.data > liver.data.shuf
head -n 120 liver.data.shuf > liver.data.test
head -n 240 liver.data.shuf | tail -n 120 > liver.data.dev
tail -n +241 liver.data.shuf > liver.data.train