Commit fc264cf 1 parent 6629195 commit fc264cf Copy full SHA for fc264cf
File tree 1 file changed +43
-0
lines changed
1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
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
+ - .github/workflows/jmx.yml
20
+
21
+ env :
22
+ LC_ALL : en_US.UTF-8
23
+
24
+ jobs :
25
+ JDKxx_Matrix :
26
+ strategy :
27
+ matrix :
28
+ java : [ 8 ]
29
+ os : [ ubuntu-latest ]
30
+ name : JDK${{ matrix.java }} ${{ matrix.os }}
31
+ runs-on : ${{ matrix.os }}
32
+ steps :
33
+ - name : Git Checkout
34
+ uses : actions/checkout@v4
35
+ - name : Set up Java
36
+ uses : actions/setup-java@v4
37
+ with :
38
+ distribution : ' temurin'
39
+ java-version : ${{ matrix.java }}
40
+ - name : Build
41
+ shell : bash
42
+ run : |
43
+ mvn -U -e -B -ntp -f jmx/pom.xml clean package
You can’t perform that action at this time.
0 commit comments