Adds support for generating packages/wheels

This commit is contained in:
José Armando García Sancio
2015-02-23 19:02:22 +00:00
parent ed2ba2fe1a
commit 2e2f25eb81
2 changed files with 9 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
all: env test
all: env test packages
clean:
bin/clean.sh

View File

@@ -24,6 +24,12 @@ dpkg -l marathon mesos zookeeper | grep '^ii'
# Give all of the processes above some time.
sleep 2
# Run the tox integration tests
# Clean and recreate environment
cd /dcos-cli
make clean all
make clean env
# Activate the virtual environment so that we can run make
source env/bin/activate
# Run the default target: E.g. test and package
make