Skip to content

Commit

Permalink
Add blueprint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alien11689 committed Dec 2, 2024
1 parent 62fca6e commit 3bbfa2e
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 5 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/blueprint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# 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: JMX - CI Build

on:
pull_request:
paths:
- testsupport/**
- blueprint/**
- .github/workflows/blueprint.yml
push:
branches:
- 'trunk'

env:
LC_ALL: en_US.UTF-8

jobs:
JDKxx_Matrix:
strategy:
matrix:
java: [ 8 ]
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
shell: bash
run: |
mvn -U -e -B -ntp clean install -f testsupport/pom.xml
mvn -U -e -B -ntp clean install -f blueprint/pom.xml
1 change: 1 addition & 0 deletions .github/workflows/jmx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ name: JMX - CI Build
on:
pull_request:
paths:
- testsupport/**
- jmx/**
- .github/workflows/jmx.yml
push:
Expand Down
8 changes: 4 additions & 4 deletions blueprint/blueprint-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.aries</groupId>
<artifactId>parent</artifactId>
<version>2.0.1</version>
<version>2.1.0</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>

Expand All @@ -45,9 +45,9 @@

<properties>
<blueprint.api.dev.version>1.0.2-SNAPSHOT</blueprint.api.dev.version>
<blueprint.core.dev.version>1.10.2-SNAPSHOT</blueprint.core.dev.version>
<blueprint.cm.dev.version>1.3.2-SNAPSHOT</blueprint.cm.dev.version>
<blueprint.parser.dev.version>1.6.1-SNAPSHOT</blueprint.parser.dev.version>
<blueprint.core.dev.version>1.10.4-SNAPSHOT</blueprint.core.dev.version>
<blueprint.cm.dev.version>1.3.3-SNAPSHOT</blueprint.cm.dev.version>
<blueprint.parser.dev.version>1.6.2-SNAPSHOT</blueprint.parser.dev.version>
<blueprint.authz.dev.version>1.0.1-SNAPSHOT</blueprint.authz.dev.version>
<blueprint.spring.dev.version>1.0.0-SNAPSHOT</blueprint.spring.dev.version>
<blueprint.spring.extender.dev.version>1.0.0-SNAPSHOT</blueprint.spring.extender.dev.version>
Expand Down
2 changes: 1 addition & 1 deletion blueprint/itests/blueprint-itests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

<properties>
<exam.version>4.10.0</exam.version>
<url.version>2.2.0</url.version>
<url.version>2.5.3</url.version>

<blueprint.api.version>${blueprint.api.dev.version}</blueprint.api.version>
<blueprint.core.version>${blueprint.core.dev.version}</blueprint.core.version>
Expand Down

0 comments on commit 3bbfa2e

Please sign in to comment.