ium_444507/Jenkinsfile

25 lines
650 B
Plaintext
Raw Normal View History

2022-03-25 08:14:39 +01:00
pipeline {
agent any
parameters {
string (
defaultValue: 'Hello World!',
description: 'Tekst, którym chcesz przywitać świat',
name: 'INPUT_TEXT',
trim: false
)
}
stages {
2022-03-26 10:37:01 +01:00
stage('Checkout') {
2022-03-25 08:14:39 +01:00
steps {
2022-03-26 10:37:01 +01:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: '8b8d54ee-f03c-4980-90b1-959faa97082b', url: 'https://git.wmi.amu.edu.pl/s444507/ium_444507.git']]])
2022-03-25 08:14:39 +01:00
}
}
2022-03-26 10:53:51 +01:00
stage('Script') {
2022-03-25 08:14:39 +01:00
steps {
2022-03-26 10:53:51 +01:00
script {
sh 'ls -la'
}
2022-03-25 08:14:39 +01:00
}
}
}
}