eclipse-mylyn / org.eclipse.mylyn

Eclipse Public License 2.0
14 stars 9 forks source link

small oomph setup fixes #549

Closed BeckerFrank closed 4 months ago

BeckerFrank commented 4 months ago
  1. remove the not working .github repository setup
  2. add all Doc projects to the Doc Workingset
merks commented 4 months ago

Instead of removing it, might it be better to fix it? (I can help fix it.)

BeckerFrank commented 4 months ago

Instead of removing it, might it be better to fix it? (I can help fix it.)

I do not really use / need the .github repository.

I get an java.lang.Exception: org.eclipse.jgit.errors.RepositoryNotFoundException: repository not found: /Users/frank/eclipse/mylyn-admin-test/git/.github

I think we have a git clone problem with repositories starting with a dot.

merks commented 4 months ago

Yes, they generally need a bit of special attention... E.g., like this for simrel:

https://github.com/eclipse-simrel/simrel.build/blob/bcf05da46c2f46508118643655378420688296aa/SimRel.setup#L188-L192

So that it creates a folder simrel.github and not .github. I can help make it work nicely if you wish...

merks commented 4 months ago

BTW, I also think this new build installer tasks does not need to run on each startup and there is a property to disable that... It's a bit annoying to wait for a build each time you start the IDE...

BeckerFrank commented 4 months ago

Yes, they generally need a bit of special attention... E.g., like this for simrel:

https://github.com/eclipse-simrel/simrel.build/blob/bcf05da46c2f46508118643655378420688296aa/SimRel.setup#L188-L192

So that it creates a folder simrel.github and not .github. I can help make it work nicely if you wish...

So the trick is to set the locationQualifier. Right?

BeckerFrank commented 4 months ago

@merks: Please check if this is better now.