-
Notifications
You must be signed in to change notification settings - Fork 33
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
I feel the the statement 'closest first' is not true at all #111
Comments
The reason its not closed first is because X and Y are always ahead in the lifecycle than c and t, its not possible to run something from t before X or Y in the same phase which is incredibly annoying. |
Running tile plugin 2.16, java 11.0.7 |
Could you suggest a PR to fix it? You may also wish to upgrade to 2.17 to
get rid of the annoying java 11 warnings.
…On Wed, Jul 1, 2020 at 10:44 PM Michael McCallum ***@***.***> wrote:
Running tile plugin 2.16, java 11.0.7
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#111 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAANTWG4QLR4LLCV53CKOATRZMHR3ANCNFSM4ONI7VLQ>
.
--
---
Richard Vowles,
Full stack - from Kubernetes, through Node & Java, Web and Mobile
development in Flutter - software developer for hire!
ph: +64275467747
|
I can suggest a PR. Upgrading to 2.17 in progress.
…On Thursday, July 2, 2020, Richard Vowles ***@***.***> wrote:
Could you suggest a PR to fix it? You may also wish to upgrade to 2.17 to
get rid of the annoying java 11 warnings.
On Wed, Jul 1, 2020 at 10:44 PM Michael McCallum ***@***.***
>
wrote:
> Running tile plugin 2.16, java 11.0.7
>
> —
> You are receiving this because you are subscribed to this thread.
> Reply to this email directly, view it on GitHub
> <#111#
issuecomment-652343451>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/
AAANTWG4QLR4LLCV53CKOATRZMHR3ANCNFSM4ONI7VLQ>
> .
>
--
---
Richard Vowles,
Full stack - from Kubernetes, through Node & Java, Web and Mobile
development in Flutter - software developer for hire!
ph: +64275467747
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#111 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAG4GFFSYUGPP6J55YDWRR3RZOQIDANCNFSM4ONI7VLQ>
.
|
@stickycode did you have any suggested changes in the end at all? Was thinking of rolling a minor release using the new Groovy version, and updating the invoker plugin (and fixing the tests that breaks), but would be good to include something that fixes/improves tiles at the same time. |
Didn't quite get there yet, been busy doing some bounds and shifty
…On Wed, 29 Jul 2020, 20:57 Mark Derricutt, ***@***.***> wrote:
@stickycode <https://github.com/stickycode> did you have any suggested
changes in the end at all? Was thinking of rolling a minor release using
the new Groovy version, and updating the invoker plugin (and fixing the
tests that breaks), but would be good to include something that
fixes/improves tiles at the same time.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#111 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAG4GFBXWNLKF5JWSAJ7PFTR57QALANCNFSM4ONI7VLQ>
.
|
Without looking at the code it seems like the transitives are added to one list at the end of the direct tiles. How about depth first on the tile resolution. That would give an intuitive resolution or maybe make different weirdnesses |
Given a tile group:c with nested tiles
and a tile group:t
and a project group:a with parent group:p
The resolution order is
p <- Y <- X <- t <- c
When I think the order should be
p <- t <- Y <- X <- c
Note that if you reverse the order of c and t
and a project group:a with parent group:p
The resolution order is
p <- Y <- X <- c <- t
Because of this its not possible to get the correct ordering of configuration when mixing direct tiles with indirect tiles
The text was updated successfully, but these errors were encountered: