2020-04-30 23:48:29 +03:00
|
|
|
#!/bin/bash
|
|
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
# Licensed under the Apache 2.0 License.
|
|
|
|
|
2020-11-17 20:34:21 +03:00
|
|
|
set -e
|
|
|
|
|
2023-08-31 14:30:38 +03:00
|
|
|
if [ ! -f "python/version.py" ]; then
|
|
|
|
echo "Generate version.py if it doesn't already exist"
|
|
|
|
mkdir -p tmp_build && cd tmp_build
|
|
|
|
cmake -L -GNinja -DCOMPILE_TARGET=virtual ..
|
|
|
|
cd .. && rm -rf tmp_build
|
2022-06-29 21:23:43 +03:00
|
|
|
fi
|
|
|
|
|
2020-11-17 20:34:21 +03:00
|
|
|
echo "Setting up Python environment..."
|
|
|
|
if [ ! -f "env/bin/activate" ]
|
|
|
|
then
|
|
|
|
python3.8 -m venv env
|
|
|
|
fi
|
|
|
|
|
|
|
|
source env/bin/activate
|
2021-09-02 17:35:27 +03:00
|
|
|
pip install -U pip
|
|
|
|
pip install -q -U -e ./python/
|
|
|
|
pip install -q -U -r ./doc/requirements.txt
|
2020-11-17 20:34:21 +03:00
|
|
|
echo "Python environment successfully setup"
|
|
|
|
|
2020-11-03 20:24:39 +03:00
|
|
|
sphinx-autobuild -b html doc doc/html --host localhost --port 8080
|