Skip to content

Commit f15edce

Browse files
committed
Add jmx build workflow
1 parent 6629195 commit f15edce

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.github/workflows/jmx.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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: JMX - CI Build
14+
15+
on:
16+
push:
17+
paths:
18+
- jmx/**
19+
20+
env:
21+
LC_ALL: en_US.UTF-8
22+
23+
jobs:
24+
JDKxx_Matrix:
25+
strategy:
26+
matrix:
27+
java: [ 8 ]
28+
os: [ ubuntu-latest ]
29+
name: JDK${{ matrix.java }} ${{ matrix.os }}
30+
runs-on: ${{ matrix.os }}
31+
steps:
32+
- name: Git Checkout
33+
uses: actions/checkout@v4
34+
- name: Set up Java
35+
uses: actions/setugp-java@v4
36+
with:
37+
distribution: 'temurin'
38+
java-version: ${{ matrix.java }}
39+
- name: Build
40+
shell: bash
41+
run: |
42+
mvn -U -e -B -ntp -f jmx/pom.xml clean package

0 commit comments

Comments
 (0)