forked from decentraland/unity-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathci-build.sh
executable file
·43 lines (33 loc) · 1.05 KB
/
ci-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
#!/usr/bin/env bash
source ci-setup.sh
echo "Building for $BUILD_TARGET at $PROJECT_PATH"
export BUILD_PATH="$PROJECT_PATH/Builds/$BUILD_NAME/"
mkdir -p "$BUILD_PATH"
xvfb-run --auto-servernum --server-args='-screen 0 640x480x24' $UNITY_PATH/Editor/Unity \
-quit \
-batchmode \
-projectPath "$PROJECT_PATH" \
-logFile "$PROJECT_PATH/build-logs.txt" \
-buildTarget "$BUILD_TARGET" \
-customBuildTarget "$BUILD_TARGET" \
-customBuildName "$BUILD_NAME" \
-customBuildPath "$BUILD_PATH" \
-executeMethod BuildCommand.PerformBuild
UNITY_EXIT_CODE=$?
cat "$PROJECT_PATH/build-logs.txt"
find "$BUILD_PATH"
if [ $UNITY_EXIT_CODE -eq 0 ]; then
echo "Run succeeded, no failures occurred";
elif [ $UNITY_EXIT_CODE -eq 2 ]; then
echo "Run succeeded, some tests failed";
elif [ $UNITY_EXIT_CODE -eq 3 ]; then
echo "Run failure (other failure)";
else
echo "Unexpected exit code $UNITY_EXIT_CODE";
fi
ls -la "$BUILD_PATH"
if [ -z "$(ls -A "$BUILD_PATH")" ]; then
echo "directory BUILD_PATH $BUILD_PATH is empty"
UNITY_EXIT_CODE=4
fi
exit $UNITY_EXIT_CODE;