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 { pipeline {
agent any agent any
stages { stages {
stage('Stage 1 - checkout') { stage('checkout: Check out from version control') {
steps { 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 { steps {
./process_data.sh ./process_data.sh
} }