Skip to content

Commit

Permalink
Revert "fixes bug 1036652 - Move 'make analysis'"
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnen committed Jul 12, 2014
1 parent a763408 commit c99cf9d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,15 @@ clean:
breakpad:
PREFIX=`pwd`/stackwalk/ SKIP_TAR=1 ./scripts/build-breakpad.sh

analysis: bootstrap
git submodule update --init socorro-toolbox akela
cd akela && mvn package
cd socorro-toolbox && mvn package
mkdir -p analysis
rsync socorro-toolbox/target/*.jar analysis/
rsync akela/target/*.jar analysis/
rsync -a socorro-toolbox/src/main/pig/ analysis/

json_enhancements_pg_extension: bootstrap
# This is only run manually, as it is a one-time operation
# to be performed at system installation time, rather than
Expand Down
10 changes: 1 addition & 9 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,7 @@ if [ "$1" != "leeroy" ]
then
# package socorro.tar.gz for distribution
mkdir builds/
# make the analysis
git submodule update --init socorro-toolbox akela
cd akela && mvn package
cd socorro-toolbox && mvn package
mkdir -p analysis
rsync socorro-toolbox/target/*.jar analysis/
rsync akela/target/*.jar analysis/
rsync -a socorro-toolbox/src/main/pig/ analysis/
# create the tarball
make analysis
make install PREFIX=builds/socorro
tar -C builds --mode 755 --exclude-vcs --owner 0 --group 0 -zcf socorro.tar.gz socorro/
fi

0 comments on commit c99cf9d

Please sign in to comment.