This repository has been archived by the owner on Jan 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathinit.sh
executable file
·80 lines (60 loc) · 2.58 KB
/
init.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
#!/usr/bin/env bash
set -e -u -o pipefail
if [[ -n "${DEBUG-}" ]]; then
set -x
fi
cd "$(dirname "$0")"
if [[ -n "${1:-}" ]]; then
case "$1" in
--china)
echo "Downloading with cn-production environment"
ENVIRONMENT_ARGS="--environment=cn-production"
;;
*)
echo "Unknown flag $1"
exit 1
;;
esac
fi
PKG_ROOT="workers/unity/Packages"
SDK_PATH="${PKG_ROOT}/io.improbable.worker.sdk"
SDK_MOBILE_PATH="${PKG_ROOT}/io.improbable.worker.sdk.mobile"
if [[ -n "${WORKER_SDK_OVERRIDE:-}" ]]; then
SDK_VERSION="${WORKER_SDK_OVERRIDE}"
else
SDK_VERSION="$(cat "${SDK_PATH}"/.sdk.version)"
fi
SPOT_VERSION="$(cat "${SDK_PATH}"/.spot.version)"
update_package() {
local type=$1
local identifier=$2
local path=$3
spatial package get "${type}" "${identifier}" "${SDK_VERSION}" "${path}" --unzip --force --json_output ${ENVIRONMENT_ARGS:-}
local files=${4:-""}
for file in $(echo $files | tr ";" "\n"); do
rm "${path}/${file}"
done
}
update_spot() {
local identifer=$1
local path=$2
spatial package get spot "${identifer}" "${SPOT_VERSION}" "${path}" --force --json_output ${ENVIRONMENT_ARGS:-}
}
# Update Core SDK
update_package worker_sdk c-dynamic-x86_64-gcc510-linux "${SDK_PATH}/Plugins/Improbable/Core/Linux/x86_64"
update_package worker_sdk c-bundle-x86_64-clang-macos "${SDK_PATH}/Plugins/Improbable/Core/OSX"
update_package worker_sdk c-dynamic-x86_64-vc141_mt-win32 "${SDK_PATH}/Plugins/Improbable/Core/Windows/x86_64" "improbable_worker.lib"
update_package worker_sdk csharp_cinterop "${SDK_PATH}/Plugins/Improbable/Sdk/Common"
update_package schema standard_library "${SDK_PATH}/.schema"
update_package schema test_schema_library "schema"
update_package tools schema_compiler-x86_64-win32 "${SDK_PATH}/.schema_compiler"
update_package tools schema_compiler-x86_64-macos "${SDK_PATH}/.schema_compiler"
update_spot spot-win64 "${SDK_PATH}/.spot/spot.exe"
update_spot spot-macos "${SDK_PATH}/.spot/spot"
chmod -R +x "${SDK_PATH}/.spot"
#Update Mobile SDK
update_package worker_sdk c-static-arm-clang-ios "${SDK_MOBILE_PATH}/Plugins/Improbable/Core/iOS/arm"
update_package worker_sdk c-static-x86_64-clang-ios "${SDK_MOBILE_PATH}/Plugins/Improbable/Core/iOS/x86_64"
update_package worker_sdk c-dynamic-arm64v8a-clang_ndk21-android "${SDK_MOBILE_PATH}/Plugins/Improbable/Core/Android/arm64"
update_package worker_sdk c-dynamic-armv7a-clang_ndk21-android "${SDK_MOBILE_PATH}/Plugins/Improbable/Core/Android/armv7"
update_package worker_sdk csharp_cinterop_static "${SDK_MOBILE_PATH}/Plugins/Improbable/Sdk/iOS"