2014-02-04 01:02:35 +01:00
|
|
|
#!/bin/bash
|
|
|
|
set -ex
|
2015-05-28 18:24:03 +02:00
|
|
|
|
2018-07-10 13:52:57 +02:00
|
|
|
TOOLCHAIN_PATH="$(realpath $(dirname $0)/../../build/toolchain)"
|
2015-05-28 18:24:03 +02:00
|
|
|
|
2014-03-28 01:15:17 +01:00
|
|
|
rm -rf venv
|
2015-09-15 00:42:53 +02:00
|
|
|
|
2018-07-10 13:52:57 +02:00
|
|
|
virtualenv -p ${TOOLCHAIN_PATH}/bin/python3 venv
|
2014-07-30 22:11:11 +02:00
|
|
|
venv/bin/pip install -r requirements.txt
|
2015-09-01 22:23:04 +02:00
|
|
|
venv/bin/pip install -r requirements-build.txt
|
2015-09-22 20:31:55 +02:00
|
|
|
venv/bin/pip install --no-deps .
|
2016-01-15 22:35:26 +01:00
|
|
|
./script/build/write-git-sha
|
2015-09-01 23:58:16 +02:00
|
|
|
venv/bin/pyinstaller docker-compose.spec
|
2015-01-20 12:27:10 +01:00
|
|
|
mv dist/docker-compose dist/docker-compose-Darwin-x86_64
|
2015-05-28 18:18:04 +02:00
|
|
|
dist/docker-compose-Darwin-x86_64 version
|