Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Does not checkout the afterCommit in the cloned repo #9

Closed
wants to merge 3 commits into from

Conversation

octomike
Copy link

@octomike octomike commented Feb 2, 2015

Without this addition we are only seeing master checked out.
Are we doing it wrong or was that bug?

Without this addition we are only seeing master checked out.
Are we doing it wrong is was that bug?
@Glavin001
Copy link
Owner

It uses the after commit from the webhook payload from GitLab, and then checks out that commit at https://github.com/Glavin001/GitLab-Pages/blob/master/routes/webhooks.js#L57
It should only apply when the test passes for if the deployBranch is the branch that has been pushed, see https://github.com/Glavin001/GitLab-Pages/blob/master/routes/webhooks.js#L22-L27

tl;dr

So really it does not even checkout the branch, it checks out the commit that was most recently pushed, and only if that commit lies within that deployBranch.


I'll take a look later this week when I get a chance and see if it's a true bug. Could you detail some steps I could use to reproduce? For instance, enable repo for GitLab Pages, set deployBranch to gl-pages, push branch master, notice that it does still change. This would indicate there's a bug in the check at https://github.com/Glavin001/GitLab-Pages/blob/master/routes/webhooks.js#L22-L27

@Glavin001 Glavin001 self-assigned this Feb 2, 2015
@octomike
Copy link
Author

octomike commented Feb 2, 2015

Thanks for the explanation!
But unfortunately it still does not work here.
Is repo.getCommit() implicitly checking out that commit in the tmp folder? Because that's not happening in our installation.

@Glavin001
Copy link
Owner

Yes, it should be checking that commit out in the clone, which is in the tmp directory.

Could you:

@octomike
Copy link
Author

octomike commented Feb 2, 2015

Manually checking it out in .tmp/ works fine. How do I debug that repo.getCommit(afterCommit)[https://github.com/Glavin001/GitLab-Pages/blob/master/routes/webhooks.js#L57] call further?

@Glavin001
Copy link
Owner

It looks like a NodeGit bug. I've found others, too. See nodegit/nodegit#341 (comment)

They recommend that you discuss with them on their Gitter channel. Let me know if you're able to resolve this and we can fix this for everyone. Thanks!

@Glavin001 Glavin001 changed the title explicitly checkout deployBranch on clone() Does not checkout the afterCommit in the cloned repo Feb 2, 2015
@octomike
Copy link
Author

octomike commented Feb 2, 2015

As suspected.

Hi @octomike! getCommit(sha) simply returns information about a commit in the repo, it doesn’t affect he working directory. ( https://gitter.im/nodegit/nodegit )

@Glavin001
Copy link
Owner

Well, that explains a lot.. haha. Thanks for looking into that!

@Glavin001
Copy link
Owner

Use Checkout.tree, see http://www.nodegit.org/#Checkout/function/tree

Thanks to @orderedlist

@Glavin001 Glavin001 added bug and removed enhancement labels Feb 2, 2015
@octomike
Copy link
Author

octomike commented Feb 2, 2015

Meh, the updated pull request doesn't work. Ignore that please :)

@Glavin001
Copy link
Owner

Does it not checkout the commit still? Bummer. If it's not that then what NodeGit API call?

    + use checkoutBranch when cloning for now
@octomike
Copy link
Author

octomike commented Feb 3, 2015

Tested, works fine. Once they actually implemented what's in the API, you can use the line in the comment. 😸

@Glavin001
Copy link
Owner

So Checkout.tree is not implemented in NodeGit API yet? I thought that's what was recommended to use.. 😕

@octomike
Copy link
Author

octomike commented Feb 3, 2015

Yes, I just asked in their gitter channel.

@Glavin001
Copy link
Owner

Wow, it's unfortunate that NodeGit is so unusable in it's current state. I may even investigate using exec or spawn as a more viable solution for the time being.

@acao
Copy link

acao commented Feb 4, 2015

Probably because js-git has become so popular! This is a node wrapper for it.

https://www.npmjs.com/package/git-node

@Glavin001
Copy link
Owner

Great! Then it looks like switching to use jsgit is a good idea.

@Glavin001
Copy link
Owner

Closing this and moving to #11. I am open to reviewing Pull Requests for #11. Thanks!

@Glavin001 Glavin001 closed this Jun 15, 2015
@Glavin001
Copy link
Owner

I think git checkout tree is implemented now!
See nodegit/nodegit#402 and http://www.nodegit.org/api/checkout/#tree

Glavin001 added a commit that referenced this pull request Jun 15, 2015
Fixes #9. Upgrade dependencies, especially Nodegit
@Glavin001
Copy link
Owner

I recommend updating GitLab Pages and this should now work. Let me know if there are any other problems. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants