Commit 5d6b4fe2 authored by Dmitry Khaleev's avatar Dmitry Khaleev

TG-7: Removed Jenkinsfile

parent 3efff235
pipeline {
agent any
stages {
stage('Get source')
{
checkout(
[
$class: 'GitSCM',
branches: [[name: "${TARGET_BRANCH}"]],
extensions: [[$class: 'CloneOption', timeout: 600]],
gitTool: 'Default',
userRemoteConfigs: [[url: 'git@git01.404publishing.com:eriksson_monteiro/tangled.git']]
]
)
}
stage('build'){
parallel{
stage('build on win'){
when {
anyOf {
branch 'issue/TG-7'
}
}
agent {
label 'win'
}
steps {
echo 'hello from win'
}
}
}
}
}
}
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment