Skip to content

Commit d81a0f3

Browse files
[ProfCheck] Set script_interpreter to None
The annotated builder is a shell script, not a python script. Trying to run it with python results in an error.
1 parent 8f65411 commit d81a0f3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3611,7 +3611,10 @@
36113611
"workernames": ["profcheck-b1", "profcheck-b2"],
36123612
"builddir": "profcheck-build",
36133613
"factory": AnnotatedBuilder.getAnnotatedBuildFactory(
3614-
script="profcheck.sh", clean=True, depends_on_projects=["llvm"]
3614+
script="profcheck.sh",
3615+
clean=True,
3616+
depends_on_projects=["llvm"],
3617+
script_interpreter=None,
36153618
),
36163619
},
36173620
]

0 commit comments

Comments
 (0)