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": {
"Build (ninja -C out/Default chrome)": "ninja -C out/Default chrome",
"Run (out/Default/chrome --no-sandbox)": {
"Build Chromium": "ninja -C out/Default chrome",
"Run Chromium": {
"cmd": "out/Default/chrome --no-sandbox",
"openPort": "8088"
},
"Update source code (git rebase-update && gclient sync)": "git rebase-update && gclient sync",
"Send to code review (git cl upload)": "git cl upload"
"Update source code": "git rebase-update && gclient sync",
"Send to code review": "git cl upload"
}
}
10 changes: 5 additions & 5 deletions firefox/janitor-git.json
Expand Up @@ -21,14 +21,14 @@
}
},
"scripts": {
"./mach build": "./mach build",
"./mach build faster": "./mach build faster",
"./mach build binaries": "./mach build binaries",
"./mach run": {
"Build Firefox": "./mach build",
"Build faster": "./mach build faster",
"Build binaries": "./mach build binaries",
"Run Firefox": {
"cmd": "./mach run",
"openPort": "8088"
},
"./mach clobber": "./mach clobber",
"Clobber build": "./mach clobber",
"Update source code": "git fetch origin && git rebase origin/master",
"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": {
"./mach build": "./mach build",
"./mach build faster": "./mach build faster",
"./mach build binaries": "./mach build binaries",
"./mach run": {
"Build Firefox": "./mach build",
"Build faster": "./mach build faster",
"Build binaries": "./mach build binaries",
"Run Firefox": {
"cmd": "./mach run",
"openPort": "8088"
},
"./mach clobber": "./mach clobber",
"Clobber build": "./mach clobber",
"Update source code": "hg pull -u",
"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": {
"./mach build --dev": "./mach build --dev",
"./mach build --release": "./mach build --release",
"./mach run --dev": {
"Build Servo (dev)": "./mach build --dev",
"Build Servo (release)": "./mach build --release",
"Run Servo (dev)": {
"cmd": "./mach run --dev",
"openPort": "8088"
},
"./mach run --release": {
"Run Servo (release)": {
"cmd": "./mach run --release",
"openPort": "8088"
},
"./mach check": "./mach check",
"Check coding style": "./mach check",
"Update source code": "git fetch origin && git rebase origin/master",
"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": {
"./mozilla/mach build": "./mozilla/mach build",
"make -C objdir/calendar/lightning": "make -C objdir/calendar/lightning",
"./mozilla/mach run": {
"Build Thunderbird": "./mozilla/mach build",
"Build Lightning": "make -C objdir/calendar/lightning",
"Run Thunderbird": {
"cmd": "./mozilla/mach run",
"openPort": "8088"
},
"./mozilla/mach clobber": "./mozilla/mach clobber",
"Clobber build": "./mozilla/mach clobber",
"Update sources": "python client.py checkout"
}
}

0 comments on commit 6d3e783

Please sign in to comment.