Changeset 18488 in josm
- Timestamp:
- 2022-06-13T18:53:37+02:00 (2 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/ant-test.yml
r18430 r18488 22 22 matrix: 23 23 # test against latest update of each major Java version, as well as specific updates of LTS versions: 24 java: [8, 11, 17, 18 -ea]24 java: [8, 11, 17, 18, 19-ea] 25 25 os: [ubuntu-latest, macos-latest, windows-latest] 26 26 name: Java ${{ matrix.java }} on ${{ matrix.os }} -
trunk/.github/workflows/ant.yml
r18429 r18488 4 4 # ANT_HOME is also our ant version 5 5 ANT_HOME: 'apache-ant-1.10.12' 6 JAVAFX_VERSION: '17.0. 2'6 JAVAFX_VERSION: '17.0.3' 7 7 on: 8 8 push: … … 72 72 matrix: 73 73 # test against latest update of each major Java version, as well as specific updates of LTS versions: 74 java: [8, 11, 17, 18 -ea]74 java: [8, 11, 17, 18, 19-ea] 75 75 os: [ubuntu-latest, macos-latest, windows-latest] 76 76 name: Java ${{ matrix.java }} on ${{ matrix.os }} -
trunk/build.xml
r18348 r18488 104 104 <condition property="isJava20"><matches string="${ant.java.version}" pattern="[2-9][0-9]" /></condition> 105 105 <condition property="isJava21"><matches string="${ant.java.version}" pattern="2[1-9]|[3-9][0-9]" /></condition> 106 <!-- Disable jacoco on Java 1 8+, see https://github.com/jacoco/jacoco/pull/1132 -->106 <!-- Disable jacoco on Java 19+, see https://github.com/jacoco/jacoco/pull/1282 --> 107 107 <condition property="coverageByDefault"> 108 108 <not> 109 <isset property="isJava1 8"/>109 <isset property="isJava19"/> 110 110 </not> 111 111 </condition>
Note:
See TracChangeset
for help on using the changeset viewer.