Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion ci/Jenkinsfile.tests-e2e
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ library '[email protected]'
pipeline {
agent {
dockerfile {
label 'linuxcontainer'
label "linuxcontainer && ${params.AGENT_NODE}"
filename 'tests.Dockerfile'
dir 'ci'
args '--network=host ' +
Expand Down Expand Up @@ -56,6 +56,15 @@ pipeline {
description: 'Log level for pytest.',
choices: ['INFO', 'DEBUG', 'TRACE', 'WARNING', 'CRITICAL']
)
choice(
name: 'AGENT_NODE',
description: 'Which Linux worker to run on',
choices: [
'linux-03.he-eu-hel1.ci.devel',
'linux-02.he-eu-hel1.ci.devel',
'linux-01.he-eu-hel1.ci.devel'
],
Comment on lines +62 to +66
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Jenkins agent hostnames are not labels.

Please ask @markoburcul how to do this with containers. But probably it's just a matter of using container labels.

Copy link
Contributor Author

@siddarthkay siddarthkay Oct 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm! I'll verify by running https://ci.status.im/job/status-desktop/job/e2e/job/manual/configure against this branch to see if it works allow-selecting-host-for-e2e

)
}

options {
Expand Down