File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,6 +20,16 @@ if [ $ret -ne 0 ]; then
2020 exit 1
2121fi
2222
23+ cd commandLine/bin/
24+
25+ echo " Testing project generation linux 64" ;
26+ chmod +x projectGenerator
27+ ./projectGenerator --recursive -plinux64 -tvscode -o../../../../ ../../../../examples/
28+ errorcode=$?
29+ if [[ $errorcode -ne 0 ]]; then
30+ exit $errorcode
31+ fi
32+
2333if [[ -z " ${GA_CI_SECRET} " ]] ; then
2434 echo " Not on main repo skipping sign and upload" ;
2535else
Original file line number Diff line number Diff line change @@ -155,7 +155,15 @@ if [ $ret -ne 0 ]; then
155155 exit 1
156156fi
157157
158-
158+ cd commandLine/bin/
159+
160+ echo " Testing project generation osx" ;
161+ chmod +x projectGenerator
162+ ./projectGenerator --recursive -posx -o../../../../ ../../../../examples/
163+ errorcode=$?
164+ if [[ $errorcode -ne 0 ]]; then
165+ exit $errorcode
166+ fi
159167
160168# install electron sign globally
161169sudo npm install -g electron-osx-sign
@@ -191,4 +199,4 @@ rm -rf scripts/*.p12 2> /dev/null
191199# pwd
192200# ls -alfR
193201# cd ..
194- # pwd
202+ # pwd
You can’t perform that action at this time.
0 commit comments