Skip to content

Commit

Permalink
ci_: add proxy test creds
Browse files Browse the repository at this point in the history
  • Loading branch information
mendelskiv93 committed Dec 16, 2024
1 parent ee14490 commit 7a6e3f7
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions _assets/ci/Jenkinsfile.tests-rpc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env groovy
library '[email protected].6'
library '[email protected].16'

pipeline {
agent { label 'linux && x86_64 && nix-2.19' }
Expand All @@ -15,6 +15,11 @@ pipeline {
defaultValue: true,
description: 'Should the job report test coverage to Codecov?'
)
booleanParam(
name: 'RELEASE',
description: 'Decides whether release credentials are used.',
defaultValue: params.RELEASE ?: false
)
}

options {
Expand All @@ -35,7 +40,7 @@ pipeline {
PKG_URL = "${currentBuild.absoluteUrl}/consoleText"

/* Hack-fix for params not being set in env on first job run. */
BRANCH = "${params.BRANCH}"
BRANCH = "${params.BRANCH}"
FUNCTIONAL_TESTS_REPORT_CODECOV = "${params.FUNCTIONAL_TESTS_REPORT_CODECOV}"
}

Expand All @@ -48,7 +53,7 @@ pipeline {
variable: 'CODECOV_TOKEN'
),
]) {
nix.shell('make test-functional', pure: false)
linux.bundle('test-functional', verbose=0, pure: false)
}
} }
}
Expand Down

0 comments on commit 7a6e3f7

Please sign in to comment.