Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: autoroll/build_release

Issue 1411553004: Add autoroll server (Closed) Base URL: https://skia.googlesource.com/buildbot@arb_status
Patch Set: Add error-toast-sk to app-sk Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « autoroll/bower.json ('k') | autoroll/elements.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2 # Builds and uploads a debian package for autoroll.
3 APPNAME=autorolld
4 DESCRIPTION="Controls Skia DEPS rolls into Chrome."
5 SYSTEMD=${APPNAME}.service
6
7 # Copy files into the right locations in ${ROOT}.
8 copy_release_files()
9 {
10 INSTALL="sudo install -D --verbose --backup=none --group=root --owner=root"
11 INSTALL_DIR="sudo install -d --verbose --backup=none --group=root --owner=root"
12 ${INSTALL} --mode=644 -T ./sys/${APPNAME}.service ${ROOT}/etc/systemd/system/${A PPNAME}.service
13 ${INSTALL} --mode=755 -T ${GOPATH}/bin/autoroll ${ROOT}/usr/local/bin/autoroll
14 ${INSTALL} --mode=644 -T ./res/vul/elements.html ${ROOT}/usr/local/share/skiaau toroll/res/vul/elements.html
15 ${INSTALL} --mode=644 -T ./res/js/core.js ${ROOT}/usr/local/share/skiaau toroll/res/js/core.js
16 ${INSTALL} --mode=644 -T ./templates/header.html ${ROOT}/usr/local/share/skiaau toroll/templates/header.html
17 ${INSTALL} --mode=644 -T ./templates/main.html ${ROOT}/usr/local/share/skiaau toroll/templates/main.html
18 ${INSTALL_DIR} --mode=777 ${ROOT}/mnt/pd0/autoroll_workd ir
19 }
20
21 source ../bash/release.sh
OLDNEW
« no previous file with comments | « autoroll/bower.json ('k') | autoroll/elements.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698