ci: clean up CI logging, folding, add build time logging, and improve error handling (#14425)
This commit is contained in:
@ -56,3 +56,13 @@ tunnel.start(function(error) {
|
||||
tunnel.on('error', function(error) {
|
||||
console.error(error);
|
||||
});
|
||||
|
||||
|
||||
// TODO(i): we should properly stop the tunnel when tests are done.
|
||||
// tunnel.stop(function(error) {
|
||||
// if (error) {
|
||||
// console.log(error);
|
||||
// } else {
|
||||
// console.log('browserStack tunnel has stopped');
|
||||
// }
|
||||
//});
|
||||
|
@ -1,3 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
set +x +v -u -e -o pipefail
|
||||
|
||||
export BROWSER_STACK_ACCESS_KEY=`echo $BROWSER_STACK_ACCESS_KEY | rev`
|
||||
|
||||
node ./scripts/browserstack/start_tunnel.js &
|
||||
|
@ -1,8 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e -o pipefail
|
||||
set -u -e -o pipefail
|
||||
|
||||
|
||||
echo "Shutting down Browserstack tunnel"
|
||||
echo "TODO: implement me"
|
||||
exit 1
|
||||
echo "TODO: implement me, see start_tunnel.js for info on how to stop the tunnel"
|
||||
|
Reference in New Issue
Block a user