This commit is contained in:
Mikołaj Pokrywka 2022-03-27 20:47:04 +02:00
parent 9001fd1671
commit 9c9ac6a1a2

6
Jenkinsfile vendored
View File

@ -1,12 +1,12 @@
pipeline {
agent any
stages {
stage('Stage 1 - checkout') {
stage('checkout: Check out from version control') {
steps {
checkout scm
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444463', url: 'https://git.wmi.amu.edu.pl/s444463/ium_444463.git']]])
}
}
stage('Stage 2 - bash script') {
stage('bash script') {
steps {
./process_data.sh
}