Changeset 17239 in josm for trunk/.github/workflows


Ignore:
Timestamp:
2020-10-19T03:04:49+02:00 (4 years ago)
Author:
Don-vip
Message:

see #19937 - Fix building on java 15. Disable java 14 fully, 16-ea for macOS (patch by Stereo)

See https://github.com/openstreetmap/josm/pull/66

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/ant.yml

    r17236 r17239  
    2323      matrix:
    2424        # test against latest update of each major Java version, as well as specific updates of LTS versions:
    25         java: [8, 11, 14, 15, 16-ea]
     25        java: [8, 11, 15, 16-ea]
    2626        os: [ubuntu-latest, macos-latest, windows-latest]
    2727        headless: ["true", "false"]
     
    3030            os: macos-latest
    3131          - java: 11
     32            os: macos-latest
     33          - java: 16-ea
    3234            os: macos-latest
    3335          - headless: "false"
     
    125127        with:
    126128          upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing its ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
    127           asset_path: dist/JOSM.zip
     129          asset_path: app/JOSM.zip
    128130          asset_name: JOSM-${{ runner.os}}-java${{ matrix.java }}.zip
    129131          asset_content_type: application/zip
     
    136138        with:
    137139          upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing its ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
    138           asset_path: dist/josm-custom.jar
     140          asset_path: app/josm-custom.jar
    139141          asset_name: josm-latest.jar
    140142          asset_content_type: application/java-archive
Note: See TracChangeset for help on using the changeset viewer.