blob: 5d43835b88068d97d131b86663aa955d8c21ad49 [file] [log] [blame]
#!/bin/bash
# Builds and uploads a debian package for the Fuzzer frontend.
APPNAME=fuzzer-fe
SYSTEMD="fuzzer-fe.service"
DESCRIPTION="The Skia Fuzzer constantly fuzzes Skia through binary and api fuzzes. This package contains the frontend, meant to run on GCE."
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/${APPNAME} ${ROOT}/usr/local/bin/${APPNAME}
${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/img/favicon.ico ${ROOT}/usr/local/share/${APPNAME}/res/img/favicon.ico
${INSTALL} --mode=644 -T ./res/img/skia_fuzz.png ${ROOT}/usr/local/share/${APPNAME}/res/img/skia_fuzz.png
${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
}
source ../bash/release.sh