Skip to content

Commit 9d74fe8

Browse files
dnestorovjovanov
authored andcommitted
Remove matrix limits
1 parent 2487d06 commit 9d74fe8

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

.github/workflows/check-new-library-versions-in-batch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: "🕸️ Populate matrix"
4444
id: set-matrix
4545
run: |
46-
echo "matrix=$(./gradlew fetchExistingLibrariesWithNewerVersions --matrixLimit=5000 --quiet | sed -n '/\[/,$p')" >> $GITHUB_OUTPUT
46+
echo "matrix=$(./gradlew fetchExistingLibrariesWithNewerVersions --quiet | sed -n '/\[/,$p')" >> $GITHUB_OUTPUT
4747
4848
- name: "🔨 Create branch"
4949
run: |

tests/tck-build-logic/src/main/groovy/org/graalvm/internal/tck/updaters/FetchExistingLibrariesWithNewerVersionsTask.groovy

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ abstract class FetchExistingLibrariesWithNewerVersionsTask extends DefaultTask {
2424
@Input
2525
abstract ListProperty<String> getAllLibraryCoordinates()
2626

27-
@Input
28-
@Option(option = "matrixLimit", description = "Sets the maximum number of coordinates in the final matrix")
29-
abstract Property<Integer> getMatrixLimit()
30-
3127
private static final List<String> INFRASTRUCTURE_TESTS = List.of("samples", "org.example")
3228

3329
@TaskAction
@@ -50,10 +46,6 @@ abstract class FetchExistingLibrariesWithNewerVersionsTask extends DefaultTask {
5046
}
5147
}
5248

53-
if (newerVersions.size() > getMatrixLimit().get()) {
54-
newerVersions = newerVersions.subList(0, getMatrixLimit().get())
55-
}
56-
5749
def map = [:]
5850
newerVersions.each { coord ->
5951
def (group, artifact, version) = coord.tokenize(':')

0 commit comments

Comments
 (0)