Skip to content
Snippets Groups Projects
Commit 802393b5 authored by murgatroid99's avatar murgatroid99
Browse files

Fix node distrib test on Debian Jessie x86

parent a6330058
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