Merge pull request #49 from mesosphere/add-packages-to-ci

Adds support for generating packages/wheels
This commit is contained in:
Connor Doyle
2015-02-23 16:12:56 -08:00
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