File tree Expand file tree Collapse file tree 2 files changed +20
-5
lines changed Expand file tree Collapse file tree 2 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 12
12
13
13
ROOT=$( realpath " $ROOT " )
14
14
15
-
15
+ echo " ##[group]apt update "
16
16
if [[ " $( uname -s) " == " Linux" ]]; then
17
- sudo apt-get -y install aptitude
18
17
# for ubuntu 22.04 we need to install wine32
19
18
# sudo dpkg --add-architecture i386
20
19
sudo apt-get update
21
- sudo aptitude -y install wine64
20
+ sudo aptitude -y install wine64 aptitude
22
21
fi
22
+ echo " ##[endgroup]"
23
+
24
+ echo " ##[group]ls"
23
25
echo " Where is ROOT: $ROOT "
24
26
cd $ROOT
25
27
ls
26
28
29
+
27
30
OUTPUT_FOLDER=$ROOT /out
28
31
mkdir -p $OUTPUT_FOLDER
29
32
30
33
lastversion=$( date +%Y%m%d)
31
34
if [ -n " $1 " ] && [ " $1 " != " nightly" ]; then
32
- lastversion=$1
35
+ lastversion=$1
33
36
fi
37
+ echo " ##[endgroup]"
34
38
39
+ echo " ##[group]submodule update and pull"
35
40
git submodule update --init --recursive
36
41
git submodule update --recursive --remote
37
42
cd apps/projectGenerator
38
43
git pull origin master
44
+ echo " ##[endgroup]"
45
+
46
+ echo " ##[group]create package"
39
47
cd $OUTPUT_FOLDER
40
48
pwd
41
49
if [[ " $( uname -s) " == " Linux" ]]; then
@@ -50,6 +58,8 @@ if [[ "$(uname -s)" == "Linux" ]]; then
50
58
fi
51
59
$ROOT /scripts/dev/create_package.sh osx $lastversion master
52
60
$ROOT /scripts/dev/create_package.sh ios $lastversion master
61
+ echo " ##[endgroup]"
62
+
53
63
# $ROOT/scripts/dev/create_package.sh macos $lastversion master
54
64
55
65
ls -la
Original file line number Diff line number Diff line change @@ -195,7 +195,12 @@ function createProjectFiles {
195
195
196
196
if [ -f " ${main_ofroot} /apps/projectGenerator/commandLine/bin/projectGenerator" ]; then
197
197
echo " projectGenerator exists..."
198
- ${main_ofroot} /apps/projectGenerator/commandLine/bin/projectGenerator --recursive -p${pg_platform} -o$pkg_ofroot $pkg_ofroot /examples > /dev/null
198
+
199
+ echo " ##[group]PG building example projects"
200
+ # ${main_ofroot}/apps/projectGenerator/commandLine/bin/projectGenerator --recursive -p${pg_platform} -o$pkg_ofroot $pkg_ofroot/examples > /dev/null
201
+ ${main_ofroot} /apps/projectGenerator/commandLine/bin/projectGenerator --recursive -p${pg_platform} -o$pkg_ofroot $pkg_ofroot /examples
202
+ echo " ##[endgroup]"
203
+
199
204
else
200
205
echo " projectGenerator does not exist. Continue."
201
206
ls ${main_ofroot} /apps/projectGenerator/commandLine/bin/
You can’t perform that action at this time.
0 commit comments