Skip to content

Commit

Permalink
Merge 'make stackwalker' into bootstrap script.
Browse files Browse the repository at this point in the history
fix bug 1038358
  • Loading branch information
bramwelt committed Sep 3, 2014
1 parent 8f1db82 commit 89b9163
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
8 changes: 1 addition & 7 deletions Makefile
Expand Up @@ -2,7 +2,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

.PHONY: all test bootstrap install lint clean breakpad stackwalker json_enhancements_pg_extension
.PHONY: all test bootstrap install lint clean breakpad json_enhancements_pg_extension

all: test

Expand All @@ -26,9 +26,3 @@ breakpad:

json_enhancements_pg_extension: bootstrap
bash ./scripts/json-enhancements.sh

stackwalker:
# Build JSON stackwalker
# Depends on breakpad, run "make breakpad" if you don't have it yet
cd minidump-stackwalk; make
cp minidump-stackwalk/stackwalker stackwalk/bin
7 changes: 6 additions & 1 deletion scripts/bootstrap.sh
Expand Up @@ -21,7 +21,12 @@ ${VIRTUAL_ENV}/bin/peep install --download-cache=./pip-cache -r requirements.txt
wget --quiet 'https://ci.mozilla.org/job/breakpad/lastSuccessfulBuild/artifact/breakpad.tar.gz'
tar -zxf breakpad.tar.gz
mv breakpad stackwalk
make stackwalker
# Build JSON stackwalker
# Depends on breakpad, run "make breakpad" if you don't have it yet
pushd minidump-stackwalk
make
popd
cp minidump-stackwalk/stackwalker stackwalk/bin

# bootstrap webapp
pushd webapp-django
Expand Down

0 comments on commit 89b9163

Please sign in to comment.