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
  • Loading branch information
mdelapenya committed Jun 24, 2021
1 parent 6a84a80 commit f429a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/packaging.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def triggerE2ETests(String suite) {
booleanParam(name: 'forceSkipGitChecks', value: true),
booleanParam(name: 'forceSkipPresubmit', value: true),
booleanParam(name: 'notifyOnGreenBuilds', value: !isPR()),
booleanParam(name: 'BEAT_VERSION', value: beatVersion),
string(name: 'BEAT_VERSION', value: beatVersion),
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 f429a82

Please sign in to comment.