blob: 6e630029976446f3d460963a0752e16f75932230 [file] [log] [blame]
#!/bin/bash
# Builds and uploads a debian package for android-compiled.
APPNAME=android-compiled
DESCRIPTION="Android Compile Server for Skia Bots"
SYSTEMD=${APPNAME}.service
set -x -e
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
INSTALL="fakeroot install -D --verbose --backup=none --group=root --owner=root"
INSTALL_DIR="fakeroot install -d --verbose --backup=none --group=root --owner=root"
${INSTALL} --mode=644 -T ./sys/${APPNAME}.service ${ROOT}/etc/systemd/system/${APPNAME}.service
${INSTALL} --mode=755 -T ${GOPATH}/bin/android_compile ${ROOT}/usr/local/bin/android_compile
${INSTALL_DIR} --mode=755 ${ROOT}/usr/local/share/${APPNAME}/templates
${INSTALL} --mode=644 ./templates/* ${ROOT}/usr/local/share/${APPNAME}/templates
${INSTALL} --mode=644 -T ./res/js/core.js ${ROOT}/usr/local/share/${APPNAME}/res/js/core.js
${INSTALL} --mode=644 -T ./res/vul/elements.html ${ROOT}/usr/local/share/${APPNAME}/res/vul/elements.html
${INSTALL} --mode=755 -T ./compile.sh ${ROOT}/usr/local/share/${APPNAME}/compile.sh
}
source ../bash/release.sh