Skip to content

Commit

Permalink
jenkins debug
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Kononykhin <[email protected]>
  • Loading branch information
andkononykhin committed Dec 5, 2018
1 parent 445681e commit 5fc9c64
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Jenkinsfile.cd
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ def buildDebUbuntu = { repoName, releaseVersion, sourcePath ->

def systemTests = { component ->
node("ubuntu") {
checkout scm

try {
dir("environment/docker/pool"){
stage("Prepare pool") {
Expand Down Expand Up @@ -144,7 +146,8 @@ def systemTests = { component ->
options = new TestAndPublishOptions()

// FIXME: Remove after tests
options.skips([
env.BRANCH_NAME = 'master'
options.skip([
StagesEnum.IS_TESTED,
StagesEnum.STATIC_CODE_VALIDATION,
StagesEnum.TEST,
Expand All @@ -167,8 +170,9 @@ options.skips([
StagesEnum.BUILD_RESULT_NOTIF,
])

options.enable([StagesEnum.PACK_RELEASE_COPY, StagesEnum.PACK_RELEASE_COPY_ST])
//options.enable([StagesEnum.PACK_RELEASE_COPY, StagesEnum.PACK_RELEASE_COPY_ST])
options.setCopyWithDeps(true)
options.setSystemTestsCb(systemTests)
options.setPrContexts([env.INDY_GITHUB_PR_REQUIRED_CONTEXT ?: "ci/hyperledger-jenkins/pr-merge"])

testAndPublish(name, [ubuntu: [node: nodeTestUbuntu, common: commonTestUbuntu]], true, options, [ubuntu: buildDebUbuntu])

0 comments on commit 5fc9c64

Please sign in to comment.