Skip to content

Allow users to access factory method params info #888

Allow users to access factory method params info

Allow users to access factory method params info #888

Triggered via pull request April 24, 2024 13:15
Status Failure
Total duration 5m 11s
Artifacts

test.yml

on: pull_request
Matrix Preparation
4s
Matrix Preparation
Matrix: build
Fit to window
Zoom out
Zoom in

Annotations

27 errors and 21 warnings
17, oracle, ubuntu, UTC, tr_TR, stress JIT: testng-core/src/main/java/org/testng/internal/FactoryMethod.java#L205
Replace 4 lines 205..205 with instance, instancePosition, parameters, invocationCounter.getAndIncrement()))
17, oracle, ubuntu, UTC, tr_TR, stress JIT: testng-core/src/main/java/org/testng/internal/FactoryMethod.java#L213
Replace 4 lines 213..213 with testInstances[i], position, parameters, invocationCounter.getAndIncrement()));
17, oracle, ubuntu, UTC, tr_TR, stress JIT: testng-core/src/main/java/org/testng/internal/FactoryMethod.java#L222
Replace 2 lines 222..222 with new ParameterInfo( instance, position, parameters, invocationCounter.getAndIncrement()));
17, oracle, ubuntu, UTC, tr_TR, stress JIT: task ':testng-core:autostyleJavaCheck'#L1
Execution failed for task ':testng-core:autostyleJavaCheck': See 'What went wrong' below
17, oracle, ubuntu, UTC, tr_TR, stress JIT
Execution failed for task ':testng-core:autostyleJavaCheck'. > The following files have format violations: src/main/java/org/testng/internal/FactoryMethod.java @@ -202,15 +202,21 @@ .map( instance -> new ParameterInfo( -································instance,·instancePosition,·parameters,·invocationCounter.getAndIncrement()))␊ +································instance,␊ +································instancePosition,␊ +································parameters,␊ +································invocationCounter.getAndIncrement()))␊ .collect(Collectors.toList())); } else { for (Integer index : indices) { int i = index - position; if (i >= 0 && i < testInstances.length) { result.add( new ParameterInfo( -························testInstances[i],·position,·parameters,·invocationCounter.getAndIncrement()));␊ +························testInstances[i],␊ +························position,␊ +························parameters,␊ +························invocationCounter.getAndIncrement()));␊ } } } @@ -219,7 +225,8 @@ if (indices == null || indices.isEmpty() || indices.contains(position)) { Object instance = m_objectFactory.newInstance(com.getConstructor(), parameters); result.add( -················new·ParameterInfo(instance,·position,·parameters,·invocationCounter.getAndIncrement()));␊ +················new·ParameterInfo(␊ +····················instance,·position,·parameters,·invocationCounter.getAndIncrement()));␊ } position++; } You might want to adjust -PmaxCheckMessageLines=50 -PmaxFilesToList=10 -PminLinesPerFile=4 to see more violations Run './gradlew autostyleApply' to fix the violations.
21, corretto, same hashcode, ubuntu, Pacific/Chatham, de_DE: testng-core/src/main/java/org/testng/internal/FactoryMethod.java#L205
Replace 4 lines 205..205 with instance, instancePosition, parameters, invocationCounter.getAndIncrement()))
21, corretto, same hashcode, ubuntu, Pacific/Chatham, de_DE: testng-core/src/main/java/org/testng/internal/FactoryMethod.java#L213
Replace 4 lines 213..213 with testInstances[i], position, parameters, invocationCounter.getAndIncrement()));
21, corretto, same hashcode, ubuntu, Pacific/Chatham, de_DE: testng-core/src/main/java/org/testng/internal/FactoryMethod.java#L222
Replace 2 lines 222..222 with new ParameterInfo( instance, position, parameters, invocationCounter.getAndIncrement()));
21, corretto, same hashcode, ubuntu, Pacific/Chatham, de_DE: task ':testng-core:autostyleJavaCheck'#L1
Execution failed for task ':testng-core:autostyleJavaCheck': See 'What went wrong' below
21, corretto, same hashcode, ubuntu, Pacific/Chatham, de_DE
Execution failed for task ':testng-core:autostyleJavaCheck'. > The following files have format violations: src/main/java/org/testng/internal/FactoryMethod.java @@ -202,15 +202,21 @@ .map( instance -> new ParameterInfo( -································instance,·instancePosition,·parameters,·invocationCounter.getAndIncrement()))␊ +································instance,␊ +································instancePosition,␊ +································parameters,␊ +································invocationCounter.getAndIncrement()))␊ .collect(Collectors.toList())); } else { for (Integer index : indices) { int i = index - position; if (i >= 0 && i < testInstances.length) { result.add( new ParameterInfo( -························testInstances[i],·position,·parameters,·invocationCounter.getAndIncrement()));␊ +························testInstances[i],␊ +························position,␊ +························parameters,␊ +························invocationCounter.getAndIncrement()));␊ } } } @@ -219,7 +225,8 @@ if (indices == null || indices.isEmpty() || indices.contains(position)) { Object instance = m_objectFactory.newInstance(com.getConstructor(), parameters); result.add( -················new·ParameterInfo(instance,·position,·parameters,·invocationCounter.getAndIncrement()));␊ +················new·ParameterInfo(␊ +····················instance,·position,·parameters,·invocationCounter.getAndIncrement()));␊ } position++; } You might want to adjust -PmaxCheckMessageLines=50 -PmaxFilesToList=10 -PminLinesPerFile=4 to see more violations Run './gradlew autostyleApply' to fix the violations.
11, microsoft, windows, Pacific/Chatham, fr_FR: testng-core\src\main\java\org\testng\internal\FactoryMethod.java#L1
Replace 252 lines 1..245 with package org.testng.internal; import java.lang.reflect.Modifier; import java.util.Arrays; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import java.util.concurrent.atomic.AtomicInteger; import java.util.stream.Collectors; import org.testng.DataProviderHolder; import org.testng.IDataProviderInterceptor; import org.testng.IDataProviderListener; import org.testng.IInstanceInfo; import org.testng.ITestClassInstance; import org.testng.ITestContext; import org.testng.ITestMethodFinder; import org.testng.ITestNGListener; import org.testng.ITestNGMethod; ...232 more lines
11, microsoft, windows, Pacific/Chatham, fr_FR: task ':testng-core:autostyleJavaCheck'#L1
Execution failed for task ':testng-core:autostyleJavaCheck': See 'What went wrong' below
11, microsoft, windows, Pacific/Chatham, fr_FR
Execution failed for task ':testng-core:autostyleJavaCheck'. > The following files have format violations: src\main\java\org\testng\internal\FactoryMethod.java @@ -1,245 +1,252 @@ -package org.testng.internal;\r\n -\r\n -import java.lang.reflect.Modifier;\r\n -import java.util.Arrays;\r\n -import java.util.HashSet;\r\n -import java.util.Iterator;\r\n -import java.util.List;\r\n -import java.util.Map;\r\n -import java.util.Set;\r\n -import java.util.concurrent.atomic.AtomicInteger;\r\n -import java.util.stream.Collectors;\r\n -import org.testng.DataProviderHolder;\r\n -import org.testng.IDataProviderInterceptor;\r\n -import org.testng.IDataProviderListener;\r\n -import org.testng.IInstanceInfo;\r\n -import org.testng.ITestClassInstance;\r\n -import org.testng.ITestContext;\r\n -import org.testng.ITestMethodFinder;\r\n -import org.testng.ITestNGListener;\r\n -import org.testng.ITestNGMethod;\r\n -import org.testng.ITestObjectFactory;\r\n -import org.testng.TestNGException;\r\n -import org.testng.annotations.IFactoryAnnotation;\r\n -import org.testng.annotations.IListenersAnnotation;\r\n -import org.testng.collections.Lists;\r\n -import org.testng.collections.Maps;\r\n -import org.testng.internal.annotations.IAnnotationFinder;\r\n -import org.testng.xml.XmlTest;\r\n -\r\n -/** This class represents a method annotated with @factory */\r\n -public class FactoryMethod extends BaseTestMethod {\r\n -\r\n - private final IFactoryAnnotation factoryAnnotation;\r\n - private final Object m_instance;\r\n - private final ITestContext m_testContext;\r\n - private String m_factoryCreationFailedMessage = null;\r\n - private final DataProviderHolder holder;\r\n -\r\n - public String getFactoryCreationFailedMessage() {\r\n - return m_factoryCreationFailedMessage;\r\n - }\r\n -\r\n - private void init(Object instance, IAnnotationFinder annotationFinder, ConstructorOrMethod com) {\r\n - IListenersAnnotation annotation =\r\n - annotationFinder.findAnnotation(com.getDeclaringClass(), IListenersAnnotation.class);\r\n - if (annotation == null) {\r\n - return;\r\n - }\r\n ... (449 more lines that didn't fit) You might want to adjust -PmaxCheckMessageLines=50 -PmaxFilesToList=10 -PminLinesPerFile=4 to see more violations Run './gradlew autostyleApply' to fix the violations.
17, oracle, windows, America/New_York, ru_RU, stress JIT: testng-core\src\main\java\org\testng\internal\FactoryMethod.java#L1
Replace 252 lines 1..245 with package org.testng.internal; import java.lang.reflect.Modifier; import java.util.Arrays; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import java.util.concurrent.atomic.AtomicInteger; import java.util.stream.Collectors; import org.testng.DataProviderHolder; import org.testng.IDataProviderInterceptor; import org.testng.IDataProviderListener; import org.testng.IInstanceInfo; import org.testng.ITestClassInstance; import org.testng.ITestContext; import org.testng.ITestMethodFinder; import org.testng.ITestNGListener; import org.testng.ITestNGMethod; ...232 more lines
17, oracle, windows, America/New_York, ru_RU, stress JIT: task ':testng-core:autostyleJavaCheck'#L1
Execution failed for task ':testng-core:autostyleJavaCheck': See 'What went wrong' below
17, oracle, windows, America/New_York, ru_RU, stress JIT
Execution failed for task ':testng-core:autostyleJavaCheck'. > The following files have format violations: src\main\java\org\testng\internal\FactoryMethod.java @@ -1,245 +1,252 @@ -package org.testng.internal;\r\n -\r\n -import java.lang.reflect.Modifier;\r\n -import java.util.Arrays;\r\n -import java.util.HashSet;\r\n -import java.util.Iterator;\r\n -import java.util.List;\r\n -import java.util.Map;\r\n -import java.util.Set;\r\n -import java.util.concurrent.atomic.AtomicInteger;\r\n -import java.util.stream.Collectors;\r\n -import org.testng.DataProviderHolder;\r\n -import org.testng.IDataProviderInterceptor;\r\n -import org.testng.IDataProviderListener;\r\n -import org.testng.IInstanceInfo;\r\n -import org.testng.ITestClassInstance;\r\n -import org.testng.ITestContext;\r\n -import org.testng.ITestMethodFinder;\r\n -import org.testng.ITestNGListener;\r\n -import org.testng.ITestNGMethod;\r\n -import org.testng.ITestObjectFactory;\r\n -import org.testng.TestNGException;\r\n -import org.testng.annotations.IFactoryAnnotation;\r\n -import org.testng.annotations.IListenersAnnotation;\r\n -import org.testng.collections.Lists;\r\n -import org.testng.collections.Maps;\r\n -import org.testng.internal.annotations.IAnnotationFinder;\r\n -import org.testng.xml.XmlTest;\r\n -\r\n -/** This class represents a method annotated with @factory */\r\n -public class FactoryMethod extends BaseTestMethod {\r\n -\r\n - private final IFactoryAnnotation factoryAnnotation;\r\n - private final Object m_instance;\r\n - private final ITestContext m_testContext;\r\n - private String m_factoryCreationFailedMessage = null;\r\n - private final DataProviderHolder holder;\r\n -\r\n - public String getFactoryCreationFailedMessage() {\r\n - return m_factoryCreationFailedMessage;\r\n - }\r\n -\r\n - private void init(Object instance, IAnnotationFinder annotationFinder, ConstructorOrMethod com) {\r\n - IListenersAnnotation annotation =\r\n - annotationFinder.findAnnotation(com.getDeclaringClass(), IListenersAnnotation.class);\r\n - if (annotation == null) {\r\n - return;\r\n - }\r\n ... (449 more lines that didn't fit) You might want to adjust -PmaxCheckMessageLines=50 -PmaxFilesToList=10 -PminLinesPerFile=4 to see more violations Run './gradlew autostyleApply' to fix the violations.
22, oracle, windows, Pacific/Chatham, de_DE: testng-core\src\main\java\org\testng\internal\FactoryMethod.java#L1
Replace 252 lines 1..245 with package org.testng.internal; import java.lang.reflect.Modifier; import java.util.Arrays; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import java.util.concurrent.atomic.AtomicInteger; import java.util.stream.Collectors; import org.testng.DataProviderHolder; import org.testng.IDataProviderInterceptor; import org.testng.IDataProviderListener; import org.testng.IInstanceInfo; import org.testng.ITestClassInstance; import org.testng.ITestContext; import org.testng.ITestMethodFinder; import org.testng.ITestNGListener; import org.testng.ITestNGMethod; ...232 more lines
22, oracle, windows, Pacific/Chatham, de_DE: task ':testng-core:autostyleJavaCheck'#L1
Execution failed for task ':testng-core:autostyleJavaCheck': See 'What went wrong' below
22, oracle, windows, Pacific/Chatham, de_DE
Execution failed for task ':testng-core:autostyleJavaCheck'. > The following files have format violations: src\main\java\org\testng\internal\FactoryMethod.java @@ -1,245 +1,252 @@ -package org.testng.internal;\r\n -\r\n -import java.lang.reflect.Modifier;\r\n -import java.util.Arrays;\r\n -import java.util.HashSet;\r\n -import java.util.Iterator;\r\n -import java.util.List;\r\n -import java.util.Map;\r\n -import java.util.Set;\r\n -import java.util.concurrent.atomic.AtomicInteger;\r\n -import java.util.stream.Collectors;\r\n -import org.testng.DataProviderHolder;\r\n -import org.testng.IDataProviderInterceptor;\r\n -import org.testng.IDataProviderListener;\r\n -import org.testng.IInstanceInfo;\r\n -import org.testng.ITestClassInstance;\r\n -import org.testng.ITestContext;\r\n -import org.testng.ITestMethodFinder;\r\n -import org.testng.ITestNGListener;\r\n -import org.testng.ITestNGMethod;\r\n -import org.testng.ITestObjectFactory;\r\n -import org.testng.TestNGException;\r\n -import org.testng.annotations.IFactoryAnnotation;\r\n -import org.testng.annotations.IListenersAnnotation;\r\n -import org.testng.collections.Lists;\r\n -import org.testng.collections.Maps;\r\n -import org.testng.internal.annotations.IAnnotationFinder;\r\n -import org.testng.xml.XmlTest;\r\n -\r\n -/** This class represents a method annotated with @factory */\r\n -public class FactoryMethod extends BaseTestMethod {\r\n -\r\n - private final IFactoryAnnotation factoryAnnotation;\r\n - private final Object m_instance;\r\n - private final ITestContext m_testContext;\r\n - private String m_factoryCreationFailedMessage = null;\r\n - private final DataProviderHolder holder;\r\n -\r\n - public String getFactoryCreationFailedMessage() {\r\n - return m_factoryCreationFailedMessage;\r\n - }\r\n -\r\n - private void init(Object instance, IAnnotationFinder annotationFinder, ConstructorOrMethod com) {\r\n - IListenersAnnotation annotation =\r\n - annotationFinder.findAnnotation(com.getDeclaringClass(), IListenersAnnotation.class);\r\n - if (annotation == null) {\r\n - return;\r\n - }\r\n ... (449 more lines that didn't fit) You might want to adjust -PmaxCheckMessageLines=50 -PmaxFilesToList=10 -PminLinesPerFile=4 to see more violations Run './gradlew autostyleApply' to fix the violations.
17, liberica, windows, UTC, ru_RU, stress JIT: testng-core\src\main\java\org\testng\internal\FactoryMethod.java#L1
Replace 252 lines 1..245 with package org.testng.internal; import java.lang.reflect.Modifier; import java.util.Arrays; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import java.util.concurrent.atomic.AtomicInteger; import java.util.stream.Collectors; import org.testng.DataProviderHolder; import org.testng.IDataProviderInterceptor; import org.testng.IDataProviderListener; import org.testng.IInstanceInfo; import org.testng.ITestClassInstance; import org.testng.ITestContext; import org.testng.ITestMethodFinder; import org.testng.ITestNGListener; import org.testng.ITestNGMethod; ...232 more lines
17, liberica, windows, UTC, ru_RU, stress JIT: task ':testng-core:autostyleJavaCheck'#L1
Execution failed for task ':testng-core:autostyleJavaCheck': See 'What went wrong' below
17, liberica, windows, UTC, ru_RU, stress JIT
Execution failed for task ':testng-core:autostyleJavaCheck'. > The following files have format violations: src\main\java\org\testng\internal\FactoryMethod.java @@ -1,245 +1,252 @@ -package org.testng.internal;\r\n -\r\n -import java.lang.reflect.Modifier;\r\n -import java.util.Arrays;\r\n -import java.util.HashSet;\r\n -import java.util.Iterator;\r\n -import java.util.List;\r\n -import java.util.Map;\r\n -import java.util.Set;\r\n -import java.util.concurrent.atomic.AtomicInteger;\r\n -import java.util.stream.Collectors;\r\n -import org.testng.DataProviderHolder;\r\n -import org.testng.IDataProviderInterceptor;\r\n -import org.testng.IDataProviderListener;\r\n -import org.testng.IInstanceInfo;\r\n -import org.testng.ITestClassInstance;\r\n -import org.testng.ITestContext;\r\n -import org.testng.ITestMethodFinder;\r\n -import org.testng.ITestNGListener;\r\n -import org.testng.ITestNGMethod;\r\n -import org.testng.ITestObjectFactory;\r\n -import org.testng.TestNGException;\r\n -import org.testng.annotations.IFactoryAnnotation;\r\n -import org.testng.annotations.IListenersAnnotation;\r\n -import org.testng.collections.Lists;\r\n -import org.testng.collections.Maps;\r\n -import org.testng.internal.annotations.IAnnotationFinder;\r\n -import org.testng.xml.XmlTest;\r\n -\r\n -/** This class represents a method annotated with @factory */\r\n -public class FactoryMethod extends BaseTestMethod {\r\n -\r\n - private final IFactoryAnnotation factoryAnnotation;\r\n - private final Object m_instance;\r\n - private final ITestContext m_testContext;\r\n - private String m_factoryCreationFailedMessage = null;\r\n - private final DataProviderHolder holder;\r\n -\r\n - public String getFactoryCreationFailedMessage() {\r\n - return m_factoryCreationFailedMessage;\r\n - }\r\n -\r\n - private void init(Object instance, IAnnotationFinder annotationFinder, ConstructorOrMethod com) {\r\n - IListenersAnnotation annotation =\r\n - annotationFinder.findAnnotation(com.getDeclaringClass(), IListenersAnnotation.class);\r\n - if (annotation == null) {\r\n - return;\r\n - }\r\n ... (449 more lines that didn't fit) You might want to adjust -PmaxCheckMessageLines=50 -PmaxFilesToList=10 -PminLinesPerFile=4 to see more violations Run './gradlew autostyleApply' to fix the violations.
11, corretto, same hashcode, macos, Pacific/Chatham, ru_RU, stress JIT: testng-core/src/main/java/org/testng/internal/FactoryMethod.java#L205
Replace 4 lines 205..205 with instance, instancePosition, parameters, invocationCounter.getAndIncrement()))
11, corretto, same hashcode, macos, Pacific/Chatham, ru_RU, stress JIT: testng-core/src/main/java/org/testng/internal/FactoryMethod.java#L213
Replace 4 lines 213..213 with testInstances[i], position, parameters, invocationCounter.getAndIncrement()));
11, corretto, same hashcode, macos, Pacific/Chatham, ru_RU, stress JIT: testng-core/src/main/java/org/testng/internal/FactoryMethod.java#L222
Replace 2 lines 222..222 with new ParameterInfo( instance, position, parameters, invocationCounter.getAndIncrement()));
11, corretto, same hashcode, macos, Pacific/Chatham, ru_RU, stress JIT: task ':testng-core:autostyleJavaCheck'#L1
Execution failed for task ':testng-core:autostyleJavaCheck': See 'What went wrong' below
11, corretto, same hashcode, macos, Pacific/Chatham, ru_RU, stress JIT
Execution failed for task ':testng-core:autostyleJavaCheck'. > The following files have format violations: src/main/java/org/testng/internal/FactoryMethod.java @@ -202,15 +202,21 @@ .map( instance -> new ParameterInfo( -································instance,·instancePosition,·parameters,·invocationCounter.getAndIncrement()))␊ +································instance,␊ +································instancePosition,␊ +································parameters,␊ +································invocationCounter.getAndIncrement()))␊ .collect(Collectors.toList())); } else { for (Integer index : indices) { int i = index - position; if (i >= 0 && i < testInstances.length) { result.add( new ParameterInfo( -························testInstances[i],·position,·parameters,·invocationCounter.getAndIncrement()));␊ +························testInstances[i],␊ +························position,␊ +························parameters,␊ +························invocationCounter.getAndIncrement()));␊ } } } @@ -219,7 +225,8 @@ if (indices == null || indices.isEmpty() || indices.contains(position)) { Object instance = m_objectFactory.newInstance(com.getConstructor(), parameters); result.add( -················new·ParameterInfo(instance,·position,·parameters,·invocationCounter.getAndIncrement()));␊ +················new·ParameterInfo(␊ +····················instance,·position,·parameters,·invocationCounter.getAndIncrement()));␊ } position++; } You might want to adjust -PmaxCheckMessageLines=50 -PmaxFilesToList=10 -PminLinesPerFile=4 to see more violations Run './gradlew autostyleApply' to fix the violations.
17, oracle, ubuntu, UTC, tr_TR, stress JIT
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: burrunan/gradle-cache-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
17, oracle, ubuntu, UTC, tr_TR, stress JIT
Gradle Build Scan: https://gradle.com/s/v37r3ejhxngt2
17, oracle, ubuntu, UTC, tr_TR, stress JIT
No files were found with the provided path: testng-core/build/reports/tests/test/**. No artifacts will be uploaded.
21, corretto, same hashcode, ubuntu, Pacific/Chatham, de_DE
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: burrunan/gradle-cache-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
21, corretto, same hashcode, ubuntu, Pacific/Chatham, de_DE
Gradle Build Scan: https://gradle.com/s/nqf3xzpyr2svm
21, corretto, same hashcode, ubuntu, Pacific/Chatham, de_DE
No files were found with the provided path: testng-core/build/reports/tests/test/**. No artifacts will be uploaded.
11, microsoft, windows, Pacific/Chatham, fr_FR
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: burrunan/gradle-cache-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
11, microsoft, windows, Pacific/Chatham, fr_FR
No files were found with the provided path: testng-core/build/reports/tests/test/**. No artifacts will be uploaded.
11, microsoft, windows, Pacific/Chatham, fr_FR
Gradle Build Scan: https://gradle.com/s/uqhi4labp3bnq
17, oracle, windows, America/New_York, ru_RU, stress JIT
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: burrunan/gradle-cache-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
17, oracle, windows, America/New_York, ru_RU, stress JIT
No files were found with the provided path: testng-core/build/reports/tests/test/**. No artifacts will be uploaded.
17, oracle, windows, America/New_York, ru_RU, stress JIT
Gradle Build Scan: https://gradle.com/s/qb72kpsa2pkci
22, oracle, windows, Pacific/Chatham, de_DE
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: burrunan/gradle-cache-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
22, oracle, windows, Pacific/Chatham, de_DE
No files were found with the provided path: testng-core/build/reports/tests/test/**. No artifacts will be uploaded.
22, oracle, windows, Pacific/Chatham, de_DE
Gradle Build Scan: https://gradle.com/s/ycbv3ktymeumw
17, liberica, windows, UTC, ru_RU, stress JIT
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: burrunan/gradle-cache-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
17, liberica, windows, UTC, ru_RU, stress JIT
Gradle Build Scan: https://gradle.com/s/3l7p5la6mmlbw
17, liberica, windows, UTC, ru_RU, stress JIT
No files were found with the provided path: testng-core/build/reports/tests/test/**. No artifacts will be uploaded.
11, corretto, same hashcode, macos, Pacific/Chatham, ru_RU, stress JIT
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: burrunan/gradle-cache-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
11, corretto, same hashcode, macos, Pacific/Chatham, ru_RU, stress JIT
No files were found with the provided path: testng-core/build/reports/tests/test/**. No artifacts will be uploaded.
11, corretto, same hashcode, macos, Pacific/Chatham, ru_RU, stress JIT
Gradle Build Scan: https://gradle.com/s/h7miywxr6n3ug