Skip to content

Commit 8f79e32

Browse files
committed
[MAINTENANCE] Add subsystem workflow and bump logback version
1 parent db16e53 commit 8f79e32

File tree

2 files changed

+54
-5
lines changed

2 files changed

+54
-5
lines changed

.github/workflows/subsystem.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Licensed under the Apache License, Version 2.0 (the "License");
2+
# you may not use this file except in compliance with the License.
3+
# You may obtain a copy of the License at
4+
#
5+
# http://www.apache.org/licenses/LICENSE-2.0
6+
#
7+
# Unless required by applicable law or agreed to in writing, software
8+
# distributed under the License is distributed on an "AS IS" BASIS,
9+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
# See the License for the specific language governing permissions and
11+
# limitations under the License.
12+
13+
name: Subsystem - CI Build
14+
15+
on:
16+
pull_request:
17+
paths:
18+
- testsupport/**
19+
- subsystem/**
20+
- .github/workflows/subsystem.yml
21+
push:
22+
branches:
23+
- 'trunk'
24+
25+
env:
26+
LC_ALL: en_US.UTF-8
27+
28+
jobs:
29+
JDKxx_Matrix:
30+
strategy:
31+
matrix:
32+
java: [ 8 ]
33+
os: [ ubuntu-latest ]
34+
name: JDK${{ matrix.java }} ${{ matrix.os }}
35+
runs-on: ${{ matrix.os }}
36+
steps:
37+
- name: Git Checkout
38+
uses: actions/checkout@v4
39+
- name: Set up Java
40+
uses: actions/setup-java@v4
41+
with:
42+
distribution: 'temurin'
43+
java-version: ${{ matrix.java }}
44+
- name: Build
45+
shell: bash
46+
run: |
47+
mvn -U -e -B -ntp clean install -f testsupport/pom.xml
48+
mvn -U -e -B -ntp clean install -f subsystem/pom.xml

subsystem/subsystem-itests/pom.xml

+6-5
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939

4040
<properties>
4141
<exam.version>3.4.0</exam.version>
42-
<url.version>1.6.0</url.version>
42+
<url.version>2.5.3</url.version>
43+
<logback.version>1.5.16</logback.version>
4344
</properties>
4445

4546
<dependencies>
@@ -129,7 +130,7 @@
129130
<groupId>org.apache.aries.subsystem</groupId>
130131
<artifactId>org.apache.aries.subsystem.api</artifactId>
131132
<scope>test</scope>
132-
<version>2.0.9-SNAPSHOT</version>
133+
<version>2.0.11-SNAPSHOT</version>
133134
<exclusions>
134135
<exclusion>
135136
<groupId>org.osgi</groupId>
@@ -141,7 +142,7 @@
141142
<groupId>org.apache.aries.subsystem</groupId>
142143
<artifactId>org.apache.aries.subsystem.core</artifactId>
143144
<scope>test</scope>
144-
<version>2.0.9-SNAPSHOT</version>
145+
<version>2.0.11-SNAPSHOT</version>
145146
<exclusions>
146147
<exclusion>
147148
<groupId>org.osgi</groupId>
@@ -288,13 +289,13 @@
288289
<dependency>
289290
<groupId>ch.qos.logback</groupId>
290291
<artifactId>logback-core</artifactId>
291-
<version>0.9.29</version>
292+
<version>${logback.version}</version>
292293
<scope>test</scope>
293294
</dependency>
294295
<dependency>
295296
<groupId>ch.qos.logback</groupId>
296297
<artifactId>logback-classic</artifactId>
297-
<version>0.9.29</version>
298+
<version>${logback.version}</version>
298299
<scope>test</scope>
299300
</dependency>
300301
<dependency>

0 commit comments

Comments
 (0)