forked from Azure/iotedgedev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
150 lines (125 loc) · 3.89 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#!/bin/bash
# stop on error
set -e
function show_help
{
echo "Usage:"
echo "build.sh local|test|prod none|minor|major imagename [windows|linux]"
echo "local: don't upload to pypi, test: uses pypitest, prod: uses pypi"
echo "none: don't bumpversion, minor: bumpversion minor --no-commit --no-tag, major: bumpversion major"
echo "imagename: localhost:5000/iotedgedev, jongacr.azurecr.io/iotedgedev, microsoft/iotedgedev"
echo "windows: builds only windows container, linux: builds only linux container. omit to build both."
echo "NOTES: 1. You must have .pypirc in repo root with pypi and pypitest sections. 2. You must have .env file in root with connection strings set."
exit 1
}
MODE="$1"
VERSION_BUMP="$2"
IMAGE_NAME="$3"
PLATFORM="$4"
if [ -z "$MODE" ] || [ -z "$VERSION_BUMP" ] || [ -z "$IMAGE_NAME" ]; then
show_help
fi
echo -e "\n===== Setting up build environment"
if [ "$MODE" = "local" ]; then
echo "Environment: $MODE"
elif [ "$MODE" = "test" ]; then
echo "Environment: $MODE"
elif [ "$MODE" = "prod" ]; then
echo "Environment: $MODE"
else
echo "ERROR> Build mode parameter not known. must be 'local', 'prod' or 'test'"
exit 1
fi
if [ ! -z $PLATFORM ]; then
echo "Platform: $PLATFORM"
fi
if [ "$OSTYPE" = "msys" ]; then
echo -e "\n===== Checking pre-requisistes"
IS_ADMIN=$(powershell '([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")')
if [ "$IS_ADMIN" = "False" ]; then
echo "ERROR> Build script must be run as administrator"
exit 1
fi
fi
#TODO
# check if running in administrator mode
# make sure docker is in linux mode
# make sure docker supports manifest option
# stop and restart docker to make sure to avoid networking problem?
# check that dockerhub exists and is accessible
# check that pipy repo exists and is accessible
# make sure there are no pending changes in GIT otherwise bumpversion will complain
function run_tox {
echo -e "\n===== Preventive cleanup"
rm __pycache__ -rf
rm .pytest_cache -rf
rm .tox -rf
rm .pytest_cache -rf
rm tests/__pycache__ -rf
echo -e "\n===== Running Tox"
tox
}
function get_version
{
VERSION=$(cat ./iotedgedev/__init__.py | grep '__version__' | grep -oP "'\K[^']+")
echo ${VERSION}
}
function run_bumpversion {
if [ "$VERSION_BUMP" = "none" ]; then
return
fi
echo -e "\n===== Bumping version"
if [ "$MODE" = "prod" ]; then
bumpversion $VERSION_BUMP
else
bumpversion $VERSION_BUMP --no-commit --no-tag --allow-dirty
fi
}
function run_build_wheel
{
echo -e "\n===== Building Python Wheel"
python setup.py bdist_wheel
}
function run_upload_pypi
{
if [ "$MODE" != "local" ]; then
echo -e "\n===== Uploading to PyPi"
PYPI=$([ "$MODE" = "prod" ] && echo "pypi" || echo "pypitest")
twine upload -r ${PYPI} --config-file .pypirc dist/iotedgedev-$(get_version)-py3-none-any.whl
fi
}
function run_build_docker
{
echo -e "\n===== Building Docker Containers"
./docker/tool/build-docker.sh $IMAGE_NAME $PLATFORM
}
function run_push_docker
{
echo -e "\n===== Pushing Docker Containers"
./docker/tool/push-docker.sh $IMAGE_NAME $PLATFORM
}
function run_push_git
{
if [ "$MODE" = "prod" ]; then
echo 'Resetting __init__ file'
git checkout ./iotedgedev/__init__.py
echo -e "\n===== Pushing Tags to Git"
git push --tags && git push
fi
}
function set_analytics_key
{
if [[ ${AIKEY//-/} =~ ^[[:xdigit:]]{32}$ ]]; then
echo 'Found AIKEY environment variable. Replacing __AIkey__'
sed -i "/__AIkey__/c __AIkey__ = '${AIKEY}'" ./iotedgedev/__init__.py
fi
}
set_analytics_key
run_bumpversion
run_tox
run_build_wheel
run_build_docker
run_upload_pypi
run_push_docker
run_push_git
echo -e "\n===== All done"