Skip to content
Snippets Groups Projects
Commit c9b3e834 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

Merge pull request #5215 from murgatroid99/node_jessie_x86_fix

Fix node distrib test on Debian Jessie x86
parents a6330058 802393b5
No related branches found
No related tags found
No related merge requests found
...@@ -122,11 +122,15 @@ class NodeDistribTest(object): ...@@ -122,11 +122,15 @@ class NodeDistribTest(object):
def build_jobspec(self): def build_jobspec(self):
if self.platform == 'linux': if self.platform == 'linux':
linux32 = ''
if self.arch == 'x86':
linux32 = 'linux32'
return create_docker_jobspec(self.name, return create_docker_jobspec(self.name,
'tools/dockerfile/distribtest/node_%s_%s' % ( 'tools/dockerfile/distribtest/node_%s_%s' % (
self.docker_suffix, self.docker_suffix,
self.arch), self.arch),
'test/distrib/node/run_distrib_test.sh %s' % ( '%s test/distrib/node/run_distrib_test.sh %s' % (
linux32,
self.node_version)) self.node_version))
elif self.platform == 'macos': elif self.platform == 'macos':
return create_jobspec(self.name, return create_jobspec(self.name,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment