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

Side by Side Diff: alertserver/build_release

Issue 836723005: Fixes needed to get alertserver back to running. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 5 years, 11 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 | « no previous file | alertserver/go/alertserver/main.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Builds and uploads a debian package for alertserver. 2 # Builds and uploads a debian package for alertserver.
3 APPNAME=alertserver 3 APPNAME=alertserver
4 DESCRIPTION="Application to alertserver updates for applications." 4 DESCRIPTION="Application to alertserver updates for applications."
5 5
6 # Copy files into the right locations in ${ROOT}. 6 # Copy files into the right locations in ${ROOT}.
7 copy_release_files() 7 copy_release_files()
8 { 8 {
9 INSTALL="sudo install -D --verbose --backup=none --group=root --owner=root" 9 INSTALL="sudo install -D --verbose --backup=none --group=root --owner=root"
10 INSTALL_DIR="sudo install -d --verbose --backup=none --group=root --owner=root" 10 INSTALL_DIR="sudo install -d --verbose --backup=none --group=root --owner=root"
11 ${INSTALL} --mode=755 -T ${GOPATH}/bin/alertserver ${ROOT}/usr/local/bin/alertse rver 11 ${INSTALL} --mode=755 -T ${GOPATH}/bin/alertserver ${ROOT}/usr/local/bin/alertse rver
12 ${INSTALL} --mode=644 -T ./sys/monit ${ROOT}/etc/monit/conf.d/aler tserver 12 ${INSTALL} --mode=644 -T ./sys/monit ${ROOT}/etc/monit/conf.d/aler tserver
13 ${INSTALL} --mode=755 -T ./sys/init ${ROOT}/etc/init.d/alertserve r 13 ${INSTALL} --mode=755 -T ./sys/init ${ROOT}/etc/init.d/alertserve r
14 ${INSTALL} --mode=644 -T ./alerts.conf ${ROOT}/etc/skiaalertserver/a lerts.conf 14 ${INSTALL} --mode=644 -T ./alerts.cfg ${ROOT}/etc/skiaalertserver/a lerts.cfg
15 ${INSTALL} --mode=644 -T ./res/vul/elements.html ${ROOT}/usr/local/share/skiaa lertserver/res/vul/elements.html 15 ${INSTALL} --mode=644 -T ./res/vul/elements.html ${ROOT}/usr/local/share/skiaa lertserver/res/vul/elements.html
16 ${INSTALL} --mode=644 -T ./res/js/core.js ${ROOT}/usr/local/share/skiaa lertserver/res/js/core.js 16 ${INSTALL} --mode=644 -T ./res/js/core.js ${ROOT}/usr/local/share/skiaa lertserver/res/js/core.js
17 ${INSTALL} --mode=644 -T ./templates/header.html ${ROOT}/usr/local/share/skiaa lertserver/templates/header.html 17 ${INSTALL} --mode=644 -T ./templates/header.html ${ROOT}/usr/local/share/skiaa lertserver/templates/header.html
18 ${INSTALL} --mode=644 -T ./templates/alerts.html ${ROOT}/usr/local/share/skiaa lertserver/templates/alerts.html 18 ${INSTALL} --mode=644 -T ./templates/alerts.html ${ROOT}/usr/local/share/skiaa lertserver/templates/alerts.html
19 ${INSTALL} --mode=644 -T ./templates/commits.html ${ROOT}/usr/local/share/skiaa lertserver/templates/commits.html 19 ${INSTALL} --mode=644 -T ./templates/commits.html ${ROOT}/usr/local/share/skiaa lertserver/templates/commits.html
20 ${INSTALL_DIR} --mode=777 ${ROOT}/mnt/pd0/alertserver_s cratch 20 ${INSTALL_DIR} --mode=777 ${ROOT}/mnt/pd0/alertserver_s cratch
21 } 21 }
22 22
23 source ../bash/release.sh 23 source ../bash/release.sh
OLDNEW
« no previous file with comments | « no previous file | alertserver/go/alertserver/main.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698