File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010
1111jobs :
1212 BuildTest :
13- name : Test ${{ matrix.os }} ${{ matrix.abi }} ${{ matrix.api }} ${{ matrix.tag }} java ${{ matrix.java_version }}
13+ name : Test
1414 runs-on : ${{ matrix.os }}
1515 strategy :
1616 fail-fast : false
1717 matrix :
18- java_version : [ 17 ]
1918 os : [ macOS-13 ]
2019 api : [ 28 ]
2120 abi : [ x86_64 ]
2221 tag : [ 'default' ]
22+ java_version : [ 17 ]
2323# include:
2424# - java_version: 17
2525# os: macOS-14
@@ -74,15 +74,20 @@ jobs:
7474 run : ./signing/cleanup.sh
7575 Check :
7676 name : Check
77- runs-on : ubuntu-latest
77+ runs-on : ${{ matrix.os }}
78+ strategy :
79+ fail-fast : false
80+ matrix :
81+ os : [ ubuntu-latest ]
82+ java_version : [ 17 ]
7883 steps :
7984 - name : Checkout
8085 uses : actions/checkout@v4
8186 - name : Install JDK ${{ matrix.java_version }}
8287 uses : actions/setup-java@v4
8388 with :
8489 distribution : ' adopt'
85- java-version : 17
90+ java-version : ${{ matrix.java_version }}
8691 - name : gradle check
8792 run : ./gradlew check
8893 - name : Archive Lint report
You can’t perform that action at this time.
0 commit comments