This is an automated email from the ASF dual-hosted git repository.

exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new df3f5b4638 NIFI-12299 Run integration-tests when assemblies are updated
df3f5b4638 is described below

commit df3f5b4638ba457dd78524765d918b590080eb99
Author: Chris Sampson <[email protected]>
AuthorDate: Tue Oct 31 20:06:19 2023 +0000

    NIFI-12299 Run integration-tests when assemblies are updated
    
    This closes #7962
    
    Signed-off-by: David Handermann <[email protected]>
---
 .github/workflows/integration-tests.yml | 6 ++++++
 pom.xml                                 | 5 ++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/integration-tests.yml 
b/.github/workflows/integration-tests.yml
index 9717970d4e..e0d5eb04c1 100644
--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -22,12 +22,18 @@ on:
   push:
     paths:
       - '.github/workflows/integration-tests.yml'
+      - 'pom.xml'
+      - '**/*-assembly/pom.xml'
+      - '**/*-bom/pom.xml'
       - '**/test/**/*IT.java'
       - '**/test/**/*ITCase.java'
       - '**/test/**/IT*.java'
   pull_request:
     paths:
       - '.github/workflows/integration-tests.yml'
+      - 'pom.xml'
+      - '**/*-assembly/pom.xml'
+      - '**/*-bom/pom.xml'
       - '**/test/**/*IT.java'
       - '**/test/**/*ITCase.java'
       - '**/test/**/IT*.java'
diff --git a/pom.xml b/pom.xml
index 7f37c85447..5b3e9b77d0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1200,7 +1200,10 @@
                                 !ITPreventProxiedAnonymousAccess,
                                 !ITPreventDirectAnonymousAccess,
                                 !ITAllowDirectAnonymousAccess,
-                                !ITProcessGroupAccessControl
+                                !ITProcessGroupAccessControl,
+                                !StatelessNiFiSinkTaskIT#testSimpleFlow,
+                                !StatelessNiFiSinkTaskIT#testParameters,
+                                !StatelessNiFiSinkTaskIT#testWrongOutputPort
                             </test>
                         </configuration>
                     </plugin>

Reply via email to