Skip to content

Commit

Permalink
[chromium][firefox][servo][thunderbird] tweak janitor.json scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jankeromnes committed Jan 12, 2018
1 parent 791cbba commit 6d3e783
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
8 changes: 4 additions & 4 deletions chromium/janitor.json
Expand Up @@ -21,12 +21,12 @@
} }
}, },
"scripts": { "scripts": {
"Build (ninja -C out/Default chrome)": "ninja -C out/Default chrome", "Build Chromium": "ninja -C out/Default chrome",
"Run (out/Default/chrome --no-sandbox)": { "Run Chromium": {
"cmd": "out/Default/chrome --no-sandbox", "cmd": "out/Default/chrome --no-sandbox",
"openPort": "8088" "openPort": "8088"
}, },
"Update source code (git rebase-update && gclient sync)": "git rebase-update && gclient sync", "Update source code": "git rebase-update && gclient sync",
"Send to code review (git cl upload)": "git cl upload" "Send to code review": "git cl upload"
} }
} }
10 changes: 5 additions & 5 deletions firefox/janitor-git.json
Expand Up @@ -21,14 +21,14 @@
} }
}, },
"scripts": { "scripts": {
"./mach build": "./mach build", "Build Firefox": "./mach build",
"./mach build faster": "./mach build faster", "Build faster": "./mach build faster",
"./mach build binaries": "./mach build binaries", "Build binaries": "./mach build binaries",
"./mach run": { "Run Firefox": {
"cmd": "./mach run", "cmd": "./mach run",
"openPort": "8088" "openPort": "8088"
}, },
"./mach clobber": "./mach clobber", "Clobber build": "./mach clobber",
"Update source code": "git fetch origin && git rebase origin/master", "Update source code": "git fetch origin && git rebase origin/master",
"Send to code review": "git bz attach -e origin/master..HEAD" "Send to code review": "git bz attach -e origin/master..HEAD"
} }
Expand Down
10 changes: 5 additions & 5 deletions firefox/janitor-hg.json
Expand Up @@ -21,14 +21,14 @@
} }
}, },
"scripts": { "scripts": {
"./mach build": "./mach build", "Build Firefox": "./mach build",
"./mach build faster": "./mach build faster", "Build faster": "./mach build faster",
"./mach build binaries": "./mach build binaries", "Build binaries": "./mach build binaries",
"./mach run": { "Run Firefox": {
"cmd": "./mach run", "cmd": "./mach run",
"openPort": "8088" "openPort": "8088"
}, },
"./mach clobber": "./mach clobber", "Clobber build": "./mach clobber",
"Update source code": "hg pull -u", "Update source code": "hg pull -u",
"Send to code review": "hg push review" "Send to code review": "hg push review"
} }
Expand Down
10 changes: 5 additions & 5 deletions servo/janitor.json
Expand Up @@ -21,17 +21,17 @@
} }
}, },
"scripts": { "scripts": {
"./mach build --dev": "./mach build --dev", "Build Servo (dev)": "./mach build --dev",
"./mach build --release": "./mach build --release", "Build Servo (release)": "./mach build --release",
"./mach run --dev": { "Run Servo (dev)": {
"cmd": "./mach run --dev", "cmd": "./mach run --dev",
"openPort": "8088" "openPort": "8088"
}, },
"./mach run --release": { "Run Servo (release)": {
"cmd": "./mach run --release", "cmd": "./mach run --release",
"openPort": "8088" "openPort": "8088"
}, },
"./mach check": "./mach check", "Check coding style": "./mach check",
"Update source code": "git fetch origin && git rebase origin/master", "Update source code": "git fetch origin && git rebase origin/master",
"Send to code review": "hub pull-request" "Send to code review": "hub pull-request"
} }
Expand Down
8 changes: 4 additions & 4 deletions thunderbird/janitor.json
Expand Up @@ -21,13 +21,13 @@
} }
}, },
"scripts": { "scripts": {
"./mozilla/mach build": "./mozilla/mach build", "Build Thunderbird": "./mozilla/mach build",
"make -C objdir/calendar/lightning": "make -C objdir/calendar/lightning", "Build Lightning": "make -C objdir/calendar/lightning",
"./mozilla/mach run": { "Run Thunderbird": {
"cmd": "./mozilla/mach run", "cmd": "./mozilla/mach run",
"openPort": "8088" "openPort": "8088"
}, },
"./mozilla/mach clobber": "./mozilla/mach clobber", "Clobber build": "./mozilla/mach clobber",
"Update sources": "python client.py checkout" "Update sources": "python client.py checkout"
} }
} }

0 comments on commit 6d3e783

Please sign in to comment.