File tree Expand file tree Collapse file tree 8 files changed +66
-0
lines changed Expand file tree Collapse file tree 8 files changed +66
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,15 @@ cp .yamato/config/Stevedore.conf ~/Stevedore.conf
3
3
cd external/buildscripts
4
4
./bee
5
5
cd ../..
6
+
6
7
perl external/buildscripts/build_runtime_android.pl --stevedorebuilddeps=1
8
+ if [ $? -eq 0 ]
9
+ then
10
+ echo " mono build script ran successfully"
11
+ else
12
+ echo " mono build script failed" >&2
13
+ exit 1
14
+ fi
15
+
7
16
mkdir -p incomingbuilds/android
8
17
cp -r builds/* incomingbuilds/android/
Original file line number Diff line number Diff line change @@ -6,7 +6,16 @@ git submodule update --init --recursive
6
6
cd external/buildscripts
7
7
./bee
8
8
cd ../..
9
+
9
10
perl external/buildscripts/build_runtime_linux.pl -build64=1 --stevedorebuilddeps=1
11
+ if [ $? -eq 0 ]
12
+ then
13
+ echo " mono build script ran successfully"
14
+ else
15
+ echo " mono build script failed" >&2
16
+ exit 1
17
+ fi
18
+
10
19
echo " Making directory incomingbuilds/linux64"
11
20
mkdir -p incomingbuilds/linux64
12
21
ls -al incomingbuilds/linux64
Original file line number Diff line number Diff line change @@ -10,7 +10,16 @@ git submodule update --init --recursive
10
10
cd external/buildscripts
11
11
./bee
12
12
cd ../..
13
+
13
14
perl external/buildscripts/build_runtime_linux.pl -build64=0 --stevedorebuilddeps=1
15
+ if [ $? -eq 0 ]
16
+ then
17
+ echo " mono build script ran successfully"
18
+ else
19
+ echo " mono build script failed" >&2
20
+ exit 1
21
+ fi
22
+
14
23
echo " Making directory incomingbuilds/linux32"
15
24
mkdir -p incomingbuilds/linux32
16
25
ls -al incomingbuilds/linux32
Original file line number Diff line number Diff line change @@ -3,7 +3,16 @@ cp .yamato/config/Stevedore.conf ~/Stevedore.conf
3
3
cd external/buildscripts
4
4
./bee
5
5
cd ../..
6
+
6
7
perl external/buildscripts/build_classlibs_osx.pl --stevedorebuilddeps=1
8
+ if [ $? -eq 0 ]
9
+ then
10
+ echo " mono build script ran successfully"
11
+ else
12
+ echo " mono build script failed" >&2
13
+ exit 1
14
+ fi
15
+
7
16
mkdir -p incomingbuilds/classlibs
8
17
cp -r ZippedClasslibs.tar.gz incomingbuilds/classlibs/
9
18
cd incomingbuilds/classlibs
Original file line number Diff line number Diff line change @@ -3,6 +3,15 @@ cp .yamato/config/Stevedore.conf ~/Stevedore.conf
3
3
cd external/buildscripts
4
4
./bee
5
5
cd ../..
6
+
6
7
perl external/buildscripts/build_runtime_osx.pl --stevedorebuilddeps=1
8
+ if [ $? -eq 0 ]
9
+ then
10
+ echo " mono build script ran successfully"
11
+ else
12
+ echo " mono build script failed" >&2
13
+ exit 1
14
+ fi
15
+
7
16
mkdir -p incomingbuilds/osx-i386
8
17
cp -r builds/* incomingbuilds/osx-i386/
Original file line number Diff line number Diff line change 1
1
@ echo off
2
2
git submodule update --init --recursive
3
+
3
4
perl external/buildscripts/build_runtime_win64.pl --stevedorebuilddeps=1
5
+ if NOT %errorlevel% == 0 (
6
+ echo " mono build script failed"
7
+ EXIT /B %errorlevel%
8
+ )
9
+ echo " mono build script ran successfully"
10
+
4
11
mkdir -p incomingbuilds\win64
5
12
xcopy /s /e /h /y builds\* incomingbuilds\win64
Original file line number Diff line number Diff line change 1
1
@ echo off
2
2
git submodule update --init --recursive
3
+
3
4
perl external/buildscripts/build_unityscript_bareminimum_win.pl
5
+ if NOT %errorlevel% == 0 (
6
+ echo " mono build script failed"
7
+ EXIT /B %errorlevel%
8
+ )
9
+ echo " mono build script ran successfully"
10
+
4
11
mkdir incomingbuilds\bareminimum
5
12
xcopy /s /e /h /y builds\* incomingbuilds\bareminimum
Original file line number Diff line number Diff line change 1
1
@ echo off
2
2
git submodule update --init --recursive
3
+
3
4
perl external/buildscripts/build_runtime_win.pl --stevedorebuilddeps=1
5
+ if NOT %errorlevel% == 0 (
6
+ echo " mono build script failed"
7
+ EXIT /B %errorlevel%
8
+ )
9
+ echo " mono build script ran successfully"
10
+
4
11
mkdir -p incomingbuilds\win32
5
12
xcopy /s /e /h /y builds\* incomingbuilds\win32
You can’t perform that action at this time.
0 commit comments