我想通过travis-ci从公共github repo部署到openshift。不幸的是,部署总是被取消:
private boolean verifyGiveAwayAccounting(GiveAwayMoneyVerificationEvent event) {
if(event.getVoucherType().equals(VoucherType.GIVE_AWAY_MONEY_ON_SIGNUP)){
someAction();
}
return verifySystemAccountTransaction(event);
}
这似乎是openshift的身份验证问题。有谁知道这个问题并解决了它?
github上的参考问题:https://github.com/travis-ci/travis-ci/issues/4112