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

alien11689 pushed a commit to branch 
ARIES-2165-build-blueprint-plugin-with-java-11-17-21
in repository https://gitbox.apache.org/repos/asf/aries.git

commit 184f492c9ad7adf2ba158ca1a72a414ff41c63da
Author: Dominik Przybysz <[email protected]>
AuthorDate: Sat Feb 8 12:49:10 2025 +0100

    ARIES-2165: Add separate workflow for blueprint plugin
---
 .github/workflows/blueprint-plugin.yml | 52 ++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/.github/workflows/blueprint-plugin.yml 
b/.github/workflows/blueprint-plugin.yml
new file mode 100644
index 000000000..aa16349ff
--- /dev/null
+++ b/.github/workflows/blueprint-plugin.yml
@@ -0,0 +1,52 @@
+#    Licensed under the Apache License, Version 2.0 (the "License");
+#    you may not use this file except in compliance with the License.
+#    You may obtain a copy of the License at
+#
+#        http://www.apache.org/licenses/LICENSE-2.0
+#
+#    Unless required by applicable law or agreed to in writing, software
+#    distributed under the License is distributed on an "AS IS" BASIS,
+#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#    See the License for the specific language governing permissions and
+#    limitations under the License.
+
+name: Blueprint - CI Build
+# TODO ARIES-2165 remove the workflow when whole blueprint supports java 11, 
17 and 21
+
+on:
+  pull_request:
+    paths:
+      - parent/**
+      - blueprint/plugin/**
+      - .github/workflows/blueprint-plugin.yml
+  push:
+    branches:
+      - 'trunk'
+
+env:
+  LC_ALL: en_US.UTF-8
+
+jobs:
+  JDKxx_Matrix:
+    timeout-minutes: 10
+    strategy:
+      fail-fast: false
+      matrix:
+        java: [ 8, 11, 17, 21 ]
+        os: [ ubuntu-latest ]
+    name: JDK${{ matrix.java }} ${{ matrix.os }}
+    runs-on: ${{ matrix.os }}
+    steps:
+    - name: Git Checkout
+      uses: actions/checkout@v4
+    - name: Set up Java
+      uses: actions/setup-java@v4
+      with:
+        distribution: 'temurin'
+        java-version: ${{ matrix.java }}
+    - name: Build parent
+      shell: bash
+      run: mvn -U -e -B -ntp clean install -f parent
+    - name: Build blueprint plugin
+      shell: bash
+      run: mvn -U -e -B -ntp clean install -f blueprint/plugin

Reply via email to