DIT112-V19 / group-06

MIT License
1 stars 2 forks source link

Create .travis.yml #61

Closed xunih closed 5 years ago

xunih commented 5 years ago

Description

Related issue(s)

72

xunih commented 5 years ago

Now the only failure is the problem of our code in arduino. I was wondering whether we should integrate the latest version of LineFollowing function and ObstacleAvoidance function and delete other useless files and try it again. It seems like now they are separate and then it will have the error of "Redefinition" @platisd

platisd commented 5 years ago

Both will work. Either place them in separate directories so arduino treats them as separate files or remove the unnecessary ones.

xunih commented 5 years ago

Both will work. Either place them in separate directories so arduino treats them as separate files or remove the unnecessary ones.

Okay, will do it tomorrow, thank you!

xunih commented 5 years ago

Seems like we passed it now, but it still shows there is a failing check, how can we fix it? @platisd

platisd commented 5 years ago

This is an old branch. It is telling you that this branch (push) fails but if you'd merge (pr) it it would not. If you want all checks to pass you should either rebase this branch according to master or merge master into it.

The first can be done by:

git checkout xunih-patch-1
git rebase master
git push -f

The second one by:

git checkout xunih-patch-1
git merge master
git push

And there's probably a way to do both via GitHub but I don't know how.