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

paulrutter pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/felix-dev.git


The following commit(s) were added to refs/heads/master by this push:
     new 1b83c02f05 Add webconsole to CI pipeline
1b83c02f05 is described below

commit 1b83c02f05a3cbf5c2a31b402324726ca03271e2
Author: Paul Rütter <[email protected]>
AuthorDate: Mon Feb 3 11:54:23 2025 +0100

    Add webconsole to CI pipeline
---
 .github/workflows/maven-ci.yml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/maven-ci.yml b/.github/workflows/maven-ci.yml
index 835fe9354f..8a6630fade 100644
--- a/.github/workflows/maven-ci.yml
+++ b/.github/workflows/maven-ci.yml
@@ -8,6 +8,7 @@ on:
       - 'http/**'
       - 'tools/maven-bundle-plugin/**'
       - 'tools/osgicheck-maven-plugin/**'
+      - 'webconsole/**'
   pull_request:
     branches: [ "master" ]
     paths:
@@ -15,6 +16,7 @@ on:
       - 'http/**'
       - 'tools/maven-bundle-plugin/**'
       - 'tools/osgicheck-maven-plugin/**'
+      - 'webconsole/**'
     
 permissions: {}
 
@@ -46,7 +48,8 @@ jobs:
             - 'tools/maven-bundle-plugin/**'
           maven-osgicheck-plugin:
             - 'tools/osgicheck-maven-plugin/**'
-
+          webconsole:
+            - 'webconsole/**'
     - name: Felix SCR
       if: steps.changes.outputs.scr == 'true'
       run: mvn -B -V -Dstyle.color=always --file scr/pom.xml clean verify
@@ -59,6 +62,9 @@ jobs:
     - name: Felix Maven OSGi check plugin
       if: steps.changes.outputs.maven-osgicheck-plugin == 'true'
       run: mvn -B -V -Dstyle.color=always --file 
tools/osgicheck-maven-plugin/pom.xml clean install verify
+    - name: Felix Webconsole
+      if: steps.changes.outputs.webconsole == 'true'
+      run: mvn -B -V -Dstyle.color=always --file webconsole/pom.xml clean 
install verify
     - name: Upload Test Results
       if: always()
       uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # 
v4.6.0

Reply via email to