Nx
Enterprise
Nx
Sign in / Sign up
Open main menu
Your Enterprise license expires in 16 days.
Nx
GitHub
Overview
Runs
Analytics
Loading workspace stats
Loading workspace insights...
Statistics interval
7 days
30 days
Latest CI Pipeline Executions
Status
Fix filter
Filter
Fuzzy
Filter range
Sort by
Sort by
Start time
Sort ascending
Sort descending
Succeeded
master
a5c13888 chore(gradle): bump version to 0.1.11 (#34054) <!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> Bump gradle project graph plugin version to 0.1.11 ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
12 days ago
by lourw
l
Succeeded
master
a5c13888 chore(gradle): bump version to 0.1.11 (#34054) <!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> Bump gradle project graph plugin version to 0.1.11 ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
12 days ago
by lourw
l
Succeeded
master
a5c13888 chore(gradle): bump version to 0.1.11 (#34054) <!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> Bump gradle project graph plugin version to 0.1.11 ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
12 days ago
by lourw
l
Succeeded
34054
3ff84001 Merge branch 'master' into lourw/bump-gradle-plugin-to-0.1.11
12 days ago
by lourw
l
Canceled
34054
3ff84001 Merge branch 'master' into lourw/bump-gradle-plugin-to-0.1.11
12 days ago
by lourw
l
Succeeded
34054
aadaee3a chore(gradle): bump version to 0.1.11
12 days ago
by lourw
l
Succeeded
master
4af60801 feat(gradle): excludeDependsOn based on provider relationships (#33923) <!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> We have a hard coded list of task targets to not exclude depends on. ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> We resolve a gradle task such that we can identify if there are provider dependency relationships involved. If there are, then do not exclude depends on since Gradle needs the dependsOn tasks to fulfill providers. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
12 days ago
by lourw
l
Succeeded
33923
192e188a Merge branch 'master' into lourw/providers
12 days ago
by lourw
l
Canceled
33923
95074e66 chore(gradle): remove comments
12 days ago
by lourw
l
Succeeded
master
d73fd46d fix(gradle): resolve dependencies after capturing project tasks (#34045) <!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> When processing Kotlin Multiplatform (KMP) projects, the Nx Gradle plugin encounters ConcurrentModificationException errors because KMP dynamically modifies the Gradle project's task and configuration containers during dependency resolution. The plugin was resolving configuration dependencies before processing tasks, which triggered KMP's hierarchy finalization and dynamic task creation while the plugin was still iterating over these collections. ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> The Gradle plugin should handle Kotlin Multiplatform projects without errors by: 1. Processing tasks before resolving configuration dependencies, preventing KMP from modifying task containers during iteration 2. Creating immutable snapshots of task and configuration collections before iteration to avoid concurrent modification issues ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes NXC-3633
12 days ago
by lourw
l
Succeeded
master
d73fd46d fix(gradle): resolve dependencies after capturing project tasks (#34045) <!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> When processing Kotlin Multiplatform (KMP) projects, the Nx Gradle plugin encounters ConcurrentModificationException errors because KMP dynamically modifies the Gradle project's task and configuration containers during dependency resolution. The plugin was resolving configuration dependencies before processing tasks, which triggered KMP's hierarchy finalization and dynamic task creation while the plugin was still iterating over these collections. ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> The Gradle plugin should handle Kotlin Multiplatform projects without errors by: 1. Processing tasks before resolving configuration dependencies, preventing KMP from modifying task containers during iteration 2. Creating immutable snapshots of task and configuration collections before iteration to avoid concurrent modification issues ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes NXC-3633
12 days ago
by lourw
l
Failed
master
d73fd46d fix(gradle): resolve dependencies after capturing project tasks (#34045) <!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> When processing Kotlin Multiplatform (KMP) projects, the Nx Gradle plugin encounters ConcurrentModificationException errors because KMP dynamically modifies the Gradle project's task and configuration containers during dependency resolution. The plugin was resolving configuration dependencies before processing tasks, which triggered KMP's hierarchy finalization and dynamic task creation while the plugin was still iterating over these collections. ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> The Gradle plugin should handle Kotlin Multiplatform projects without errors by: 1. Processing tasks before resolving configuration dependencies, preventing KMP from modifying task containers during iteration 2. Creating immutable snapshots of task and configuration collections before iteration to avoid concurrent modification issues ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes NXC-3633
12 days ago
by lourw
l
Succeeded
master
d73fd46d fix(gradle): resolve dependencies after capturing project tasks (#34045) <!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> When processing Kotlin Multiplatform (KMP) projects, the Nx Gradle plugin encounters ConcurrentModificationException errors because KMP dynamically modifies the Gradle project's task and configuration containers during dependency resolution. The plugin was resolving configuration dependencies before processing tasks, which triggered KMP's hierarchy finalization and dynamic task creation while the plugin was still iterating over these collections. ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> The Gradle plugin should handle Kotlin Multiplatform projects without errors by: 1. Processing tasks before resolving configuration dependencies, preventing KMP from modifying task containers during iteration 2. Creating immutable snapshots of task and configuration collections before iteration to avoid concurrent modification issues ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes NXC-3633
12 days ago
by lourw
l
Succeeded
master
99a9216c fix(gradle): force gradle executor to always rerun tasks (#34024) <!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> The Nx Plugin uses Nx as the backing mechanism, but Gradle still does some caching behind the scenes. When using Nx and Gradle's caching at the same time, there can be times where Gradle does not recognize input changes and will not execute tasks that it mistakenly deems unchanged. ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> Ensure that the batch executor always reruns tasks and is not impacted by the Gradle build cache. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes NXC-3649
12 days ago
by lourw
l
Succeeded
33923
7385330f Merge branch 'master' into lourw/providers
12 days ago
by lourw
l
Canceled
33923
c492102b chore(gradle): format
12 days ago
by lourw
l
Succeeded
34024
a3e0b9ea Merge branch 'master' into lourw/gradle-rerun-tasks
12 days ago
by lourw
l
Succeeded
34045
6ec3125b fix(gradle): resolve configuration dependencies after capturing tasks
13 days ago
by lourw
l
Failed
34045
6ec3125b fix(gradle): resolve configuration dependencies after capturing tasks
13 days ago
by lourw
l
Failed
33923
Fix applied
ā
f4f789f5 chore(gradle): remove wrapper files
14 days ago
by lourw
l
Previous page
Previous
Next
Next page