Travis CI failed because cannot accept license Constrain Layout

Updated response is there any solution without workaround using export license? Yes, you can use the new sdkmanager to install the constraint library and accept the license: – echo yes | sdkmanager “extras;m2repository;com;android;support;constraint;constraint-layout;1.0.2” – echo yes | sdkmanager “extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.2” Otherwise, the missing component will be detected by gradle and downloaded without accept it: # Show … Read more

Error: Local workspace file (‘angular.json’) could not be found

I just had the same problem. It’s related to release v6.0.0-rc.2, https://github.com/angular/angular-cli/releases: New configuration format. The new file can be found at angular.json (but .angular.json is also accepted). Running ng update on a CLI 1.7 project will move you to the new configuration. I needed to execute: ng update @angular/cli –migrate-only –from=1.7.4 This removed .angular-cli.json … Read more

How to run travis-ci locally

This process allows you to completely reproduce any Travis build job on your computer. Also, you can interrupt the process at any time and debug. Below is an example where I perfectly reproduce the results of job #191.1 on php-school/cli-menu . Prerequisites You have public repo on GitHub You ran at least one build on … Read more