diff options
Diffstat (limited to 'test-scheduler/docker/build.sh')
-rw-r--r-- | test-scheduler/docker/build.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test-scheduler/docker/build.sh b/test-scheduler/docker/build.sh new file mode 100644 index 00000000..8cedb622 --- /dev/null +++ b/test-scheduler/docker/build.sh @@ -0,0 +1,20 @@ +############################################################################## +# Copyright (c) 2018 Huawei Technologies Co.,Ltd and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +# get the absolute path of this shell file. +basepath=$(cd `dirname $0`; pwd) + +#build conductor +sh $basepath/plugin/build.sh + +#build server +sh $basepath/server/build.sh + +#build ui +sh $basepath/ui/build.sh |