File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ before_install:
1818 echo "${DOCKERHUB_PULL_PASSWORD}" | docker login --username "${DOCKERHUB_PULL_USERNAME}" --password-stdin
1919 fi
2020
21+
2122install :
2223 - docker --version
2324 - composer install
Original file line number Diff line number Diff line change 66[ ![ Follow Appwrite on StackShare] ( https://img.shields.io/badge/follow%20on-stackshare-blue?style=flat-square )] ( https://stackshare.io/appwrite )
77[ ![ appwrite.io] ( https://img.shields.io/badge/appwrite-.io-f02e65?style=flat-square )] ( https://appwrite.io )
88
9-
109** WORK IN PROGRESS - NOT READY FOR GENERAL USAGE**
1110
1211[ Appwrite] ( https://appwrite.io ) SDK generator is a PHP library for auto generating SDK libraries for multiple languages and platforms.
Original file line number Diff line number Diff line change @@ -240,6 +240,11 @@ public function testHTTPSuccess()
240240 echo "Executing: {$ command }\n" ;
241241
242242 $ output = [];
243+
244+ ob_end_clean ();
245+ var_dump ('Build Executing: ' .$ command );
246+ ob_start ();
247+
243248 exec ($ command , $ output );
244249
245250 foreach ($ output as $ i => $ row ) {
@@ -255,7 +260,11 @@ public function testHTTPSuccess()
255260 echo "Running tests for the {$ key } environment... \n" ;
256261
257262 $ output = [];
258-
263+
264+ ob_end_clean ();
265+ var_dump ('Env Executing: ' .$ command );
266+ ob_start ();
267+
259268 exec ($ command , $ output );
260269
261270 foreach ($ output as $ i => $ row ) {
Original file line number Diff line number Diff line change 11<?php
22
33$ baseCommand = "docker run -i --rm --volume cli:/usr/local/code/app/.preferences/ " ;
4- $ envVars = "-e endpoint=https://appwrite.io/v1 -e X-Appwrite-Project=6013fbefdfa41 -e X-Appwrite-Key=35y3h5h345 -e X-Appwrite-Locale=en-US " ;
4+ $ envVars = "" ;
55
66// Initialise the CLI
7- $ command = "$ {baseCommand} $ {envVars} cli init " ;
7+ $ command = "$ {baseCommand} $ {envVars} cli init --endpoint=https://appwrite.io/v1 --project=6013fbefdfa41 --key=35y3h5h345 --locale=en-US " ;
88$ output = [];
99exec ($ command , $ output );
1010
You can’t perform that action at this time.
0 commit comments