Skip to content
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def test(codeql, java):
command = ["python3", "-m", "http.server", "9427", "-b", "localhost"]
if runs_on.github_actions and runs_on.posix:
# On GitHub Actions, we try to run the server with higher priority
Comment thread
oscarsj marked this conversation as resolved.
Outdated
command = ["sudo", "nice", "-n", "10"] + command
command = ["sudo"] + command
repo_server_process = subprocess.Popen(
command, cwd="repo"
)
Expand Down