Skip to content

Commit

Permalink
fix: use the right param type (#26469)
Browse files Browse the repository at this point in the history
Jenkins, as expected, is honouring the param type used in the caller, but
not honouring the type in the triggered pipeline. This issue has historical
rationale, as the parameters are created dynamically

(cherry picked from commit f429a82)

# Conflicts:
#	.ci/packaging.groovy
  • Loading branch information
mdelapenya authored and mergify-bot committed Jun 24, 2021
1 parent d7f1d6c commit 8e52df1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .ci/packaging.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,10 @@ def triggerE2ETests(String suite) {
booleanParam(name: 'forceSkipGitChecks', value: true),
booleanParam(name: 'forceSkipPresubmit', value: true),
booleanParam(name: 'notifyOnGreenBuilds', value: !isPR()),
<<<<<<< HEAD
=======
string(name: 'BEAT_VERSION', value: beatVersion),
>>>>>>> f429a82b9 (fix: use the right param type (#26469))
booleanParam(name: 'BEATS_USE_CI_SNAPSHOTS', value: true),
string(name: 'runTestsSuites', value: suite),
string(name: 'GITHUB_CHECK_NAME', value: env.GITHUB_CHECK_E2E_TESTS_NAME),
Expand Down

0 comments on commit 8e52df1

Please sign in to comment.