Nx
Enterprise
Nx
Overview
Sign in / Sign up
Open main menu
Nx
GitHub
Select a tab
Overview
Runs
Analytics
Nx
GitHub
Overview
Runs
Analytics
Loading workspace stats
Loading workspace insights...
Statistics interval
7 days
30 days
Latest CI Pipeline Executions
Filter range
Sort by
Sort by
Start time
Sort ascending
Sort descending
Filter
Filter exact branch match
Exact
Select status
Succeeded
31989
450e5abb fix(gradle): replace projectRoot in path
1 month ago
by xiongemi
Succeeded
32546
602d9859 fix(gradle): replace projectRoot in path
1 month ago
by xiongemi
Canceled
32546
fe00f101 fix(gradle): replace projectRoot in path
1 month ago
by xiongemi
Succeeded
31497
13b53c61 fix(react-native): change migration to 21.4.0 and change index to src/main
2 months ago
by xiongemi
Failed
31497
13b53c61 fix(react-native): change migration to 21.4.0 and change index to src/main
2 months ago
by xiongemi
Failed
31497
c90ef2d3 fix(react-native): change migration to 21.4.0 and change index to src/main
2 months ago
by xiongemi
Failed
31497
455a352d fix(react-native): change migration to 21.4.0 and change index to src/main
2 months ago
by xiongemi
Failed
31497
64cb50a5 fix(react-native): change migration to 21.4.0 and change index to src/main
2 months ago
by xiongemi
Succeeded
master
b5ccbcd4 fix(gradle): fix gradle bootRun continuous (#32107) <!-- 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 running gradle command with args, it requires to use --args="--continutous" for bootRun, which is continuous, i got an error ``` Execution failed for task ':bootRun'. > Failed to query the value of task ':bootRun' property 'mainClass'. > Querying the mapped value of task ':resolveMainClassName' property 'outputFile' before task ':resolveMainClassName' has completed is not supported ``` ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> change it when just running `nx run demo:bootRun --continuous`, it will pass --continuous directly to ./gradlew. any args not in the list ``` new Set([ 'taskName', 'testClassName', 'args', 'excludeDependsOn', '__unparsed__', ]); ``` will passed as arga to the ./gradlew i try to add `__unparsed__`, but it is always empty. for bootRun, i add excludeDependsOn as false in nx.json and that error goes away. ``` "bootRun": { "options": { "excludeDependsOn": false } } ``` so for all continuous task, i changed excludeDependsOn as false in the option ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
2 months ago
by xiongemi
Succeeded
master
419a4a84 fix(gradle): always add plugin to all projects (#32222) <!-- 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 --> ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
2 months ago
by xiongemi
Succeeded
master
74fcd172 fix(gradle): keep original gradle name (#32220) <!-- 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 --> currently, the project name is just last part to full gradle path, for example: - gradle path for :parent-path:project-name, it currently takes only project-name this might create duplicates in a large project ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> - change the name to match gradle path exactly, then the project name would just be the gradle path - for example, the gradle command would be `./gradlew :parent-path:project-name:build`, nx command would be `nx run :parent-path:project-name:build` https://linear.app/nxdev/issue/NXC-2917/fix-terminal-ui-compatibility-with-gradle-naming need to be fixed before this pr ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
2 months ago
by xiongemi
Succeeded
32222
8cf16583 fix(gradle): always add plugin to all projects
2 months ago
by xiongemi
Succeeded
32220
68ae8289 fix(gradle): change the project name to full gradle path
2 months ago
by xiongemi
Succeeded
32107
166fd4a0 fix(gradle): fix gradle bootRun continuous
2 months ago
by xiongemi
Succeeded
32220
1bb03cd3 fix(gradle): change the project name to full gradle path
2 months ago
by xiongemi
Canceled
32220
fb98dade fix(gradle): change the project name to full gradle path
2 months ago
by xiongemi
Succeeded
atomize-docker-test
2ec6a921 fix(gradle): fix gradle class in starting time
2 months ago
by xiongemi
Succeeded
32198
a133b844 fix(release): filter dependents to only include those that are in allProjectsToProcess
2 months ago
by xiongemi
Canceled
32198
957c73d2 fix(release): filter dependents to only include those that are in allProjectsToProcess
2 months ago
by xiongemi
Succeeded
master
6aa0bd45 chore(gradle): upgrade plugin to 0.1.4 (#32160) <!-- 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 --> currently, in the repo, the version is 0.1.0 ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> since i modify the new code, i need to publish a version of https://plugins.gradle.org/plugin/dev.nx.gradle.project-graph change the version to 0.1.4 ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
2 months ago
by xiongemi
Previous page
Previous
Next
Next page