Skip to content

Commit 3adcdab

Browse files
authored
Emscripten buildbot: Platform ==> Platforms (#688)
1 parent f82a93f commit 3adcdab

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

master/custom/factories.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1363,39 +1363,39 @@ def setup(self, **kwargs):
13631363
self.addSteps([
13641364
Configure(
13651365
name="Install emscripten (if needed)",
1366-
command=["python3", "Platform/emscripten", "install-emscripten"],
1366+
command=["python3", "Platforms/emscripten", "install-emscripten"],
13671367
env=compile_environ,
13681368
),
13691369
Configure(
13701370
name="Configure build Python",
1371-
command=["python3", "Platform/emscripten", "configure-build-python"],
1371+
command=["python3", "Platforms/emscripten", "configure-build-python"],
13721372
env=compile_environ,
13731373
),
13741374
Compile(
13751375
name="Compile build Python",
1376-
command=["python3", "Platform/emscripten", "make-build-python"],
1376+
command=["python3", "Platforms/emscripten", "make-build-python"],
13771377
env=compile_environ,
13781378
),
13791379
Compile(
13801380
name="Compile host dependencies (if needed)",
1381-
command=["python3", "Platform/emscripten", "make-dependencies"],
1381+
command=["python3", "Platforms/emscripten", "make-dependencies"],
13821382
env=compile_environ,
13831383
),
13841384
Configure(
13851385
name="Configure host Python",
1386-
command=["python3", "Platform/emscripten", "configure-host"],
1386+
command=["python3", "Platforms/emscripten", "configure-host"],
13871387
env=compile_environ,
13881388
),
13891389
Compile(
13901390
name="Compile host Python",
1391-
command=["python3", "Platform/emscripten", "make-host"],
1391+
command=["python3", "Platforms/emscripten", "make-host"],
13921392
env=compile_environ,
13931393
),
13941394
Test(
13951395
name="Node full test suite",
13961396
command=[
13971397
"python3",
1398-
"Platform/emscripten",
1398+
"Platforms/emscripten",
13991399
"run",
14001400
"--test",
14011401
],
@@ -1405,14 +1405,14 @@ def setup(self, **kwargs):
14051405
Test(
14061406
name="PyRepl in Chrome smoke test",
14071407
command=[
1408-
"Platform/emscripten/browser_test/run_test.sh",
1408+
"Platforms/emscripten/browser_test/run_test.sh",
14091409
],
14101410
env=compile_environ,
14111411
timeout=step_timeout(self.test_timeout),
14121412
),
14131413
Clean(
14141414
name="Clean the builds",
1415-
command=["python3", "Platform/emscripten", "clean"],
1415+
command=["python3", "Platforms/emscripten", "clean"],
14161416
env=compile_environ,
14171417
)
14181418
])

0 commit comments

Comments
 (0)