2015-12-03 13:43:16 -05:00
|
|
|
#!/bin/bash
|
|
|
|
# Copyright (C) 2015 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2016-11-15 06:35:29 -08:00
|
|
|
while [[ ! -f WORKSPACE && "$PWD" != / ]]; do
|
2015-12-03 13:43:16 -05:00
|
|
|
cd ..
|
|
|
|
done
|
2016-11-15 06:35:29 -08:00
|
|
|
if [[ ! -f WORKSPACE ]]; then
|
2015-12-03 13:43:16 -05:00
|
|
|
echo "$(basename "$0"): must be run from a gerrit checkout" 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2016-11-15 06:35:29 -08:00
|
|
|
bazel build \
|
2017-01-24 13:57:15 -08:00
|
|
|
//polygerrit-ui/app:test_components \
|
2016-11-15 06:35:29 -08:00
|
|
|
//polygerrit-ui:fonts.zip
|
2016-03-15 10:56:06 -07:00
|
|
|
|
2016-03-30 20:01:33 +02:00
|
|
|
cd polygerrit-ui/app
|
2015-12-03 13:43:16 -05:00
|
|
|
rm -rf bower_components
|
2017-01-24 13:57:15 -08:00
|
|
|
unzip -q ../../bazel-bin/polygerrit-ui/app/test_components.zip
|
2016-03-15 10:56:06 -07:00
|
|
|
rm -rf fonts
|
2016-11-15 06:35:29 -08:00
|
|
|
unzip -q ../../bazel-bin/polygerrit-ui/fonts.zip -d fonts
|
2016-03-30 20:01:33 +02:00
|
|
|
cd ..
|
|
|
|
exec go run server.go "$@"
|