File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
jdbc/src/main/resources/META-INF/native-image/io.micronaut.sql/micronaut-jdbc Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 20
20
strategy :
21
21
matrix :
22
22
java : ['11', '17']
23
+ graalvm : ['latest', 'dev']
23
24
steps :
24
25
# https://github.com/actions/virtual-environments/issues/709
25
26
- name : Free disk space
38
39
- name : Setup GraalVM CE
39
40
uses : graalvm/setup-graalvm@v1
40
41
with :
41
- version : ' 22.1.0 '
42
+ version : ${{ matrix.graalvm }}
42
43
java-version : ${{ matrix.java }}
43
44
components : ' native-image'
44
45
- name : Build with Gradle
Original file line number Diff line number Diff line change 65
65
check_name : Java CI / Test Report (${{ matrix.java }})
66
66
report_paths : ' **/build/test-results/test/TEST-*.xml'
67
67
check_retries : ' true'
68
+ - name : " 📜 Upload binary compatibility check results"
69
+ if : always()
70
+ uses : actions/upload-artifact@v2
71
+ with :
72
+ name : binary-compatibility-reports
73
+ path : " **/build/reports/binary-compatibility-*.html"
68
74
- name : Publish to Sonatype Snapshots
69
75
if : success() && github.event_name == 'push' && matrix.java == '11'
70
76
env :
Original file line number Diff line number Diff line change 14
14
# limitations under the License.
15
15
#
16
16
17
- Args = -H:DynamicProxyConfigurationResources=${.}/dynamic-proxy-config.json
17
+ Args = -H:DynamicProxyConfigurationResources=${.}/dynamic-proxy-config.json \
18
+ --add-modules=java.sql.rowset
You can’t perform that action at this time.
0 commit comments