mirror of
https://github.com/servo/servo.git
synced 2025-07-05 22:43:40 +01:00
Python 3!
This commit is contained in:
parent
13d3cbf4be
commit
5a419e4466
2 changed files with 2 additions and 2 deletions
|
@ -44,4 +44,4 @@ tasks:
|
|||
git clone $GITHUB_EVENT_CLONE_URL repo &&
|
||||
cd repo &&
|
||||
git checkout $GITHUB_EVENT_COMMIT_SHA &&
|
||||
python2.7 decision-task.py
|
||||
python3 decision-task.py
|
||||
|
|
|
@ -16,7 +16,7 @@ def create_task(name, command, artifacts=None, dependencies=None, env=None, cach
|
|||
for k in ["GITHUB_EVENT_CLONE_URL", "GITHUB_EVENT_COMMIT_SHA"]:
|
||||
env.setdefault(k, os.environ[k])
|
||||
|
||||
task_id = taskcluster.slugId()
|
||||
task_id = taskcluster.slugId().decode("utf8")
|
||||
payload = {
|
||||
"taskGroupId": decision_task_id,
|
||||
"dependencies": [decision_task_id] + (dependencies or []),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue