fastlane icon indicating copy to clipboard operation
fastlane copied to clipboard

Fix build on Travis CI

Open mateuspontes opened this issue 6 years ago • 5 comments

Tests are ok, but Travis CI is broken due to some unknown change.

mateuspontes avatar Oct 04 '19 18:10 mateuspontes

I will try to solve this one!

sarafonseca-123 avatar Oct 04 '19 22:10 sarafonseca-123

I may take a look too

Any news or progress that you may've done @sarafonseca-123 ?

Andy9822 avatar Oct 05 '19 02:10 Andy9822

First, I'm sorry about all this commits messages I'm trying find the problem in Travis. And I think find. The command @bandit -r . in Makefile is return error because insecurity.

alvesgabriel avatar Oct 05 '19 05:10 alvesgabriel

@alvesgabriel thanks for your help. No problem with commits because you always can do a git squash in the end :)

I think the problem is not related to bandit because it started a few commits early. You can checkout any commit before bandit, for example, a8dc7bb4f1.

mateuspontes avatar Oct 05 '19 16:10 mateuspontes

@alvesgabriel , just a small tip:

When redoing a commit, you can use --amend. Imagine this scenario:

  • Do some work
  • Commit work
  • Stuff breaks
  • Fix a typo or small change related to last commit

Here, just run this:

git add <your files>
git commit --amend

It will integrate your changes to the last commit

girol avatar Oct 17 '19 14:10 girol