Ignore:
Timestamp:
2015-12-12T17:55:07+01:00 (9 years ago)
Author:
floscher
Message:

[mapillary] Improve Travis CI build

  • don't fail when javadoc errors occur
  • deploy developer resources also when build fails
Location:
applications/editors/josm/plugins/mapillary
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mapillary/.travis.yml

    r31813 r31818  
    99
    1010# Release the plugin via GitHub releases when pushing a tag
     11before_deploy: 'cp -T build/libs/josm-mapillary-plugin.jar build/libs/Mapillary.jar'
    1112deploy:
    1213  provider: releases
    1314  api_key: "${GH_TOKEN}"
    14   file: "build/libs/josm-mapillary-plugin.jar"
     15  file: "build/libs/Mapillary.jar"
    1516  skip_cleanup: true
    1617  on:
     
    1819
    1920#Deploy to GitHub pages
    20 after_success: |
     21after_script: |
    2122  if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then
    2223    git config --global user.email "deploy@travis"
  • applications/editors/josm/plugins/mapillary/build.gradle

    r31817 r31818  
    7070build.dependsOn jacocoTestReport
    7171build.dependsOn projectReport
     72
     73tasks.withType(Javadoc) {
     74  failOnError false
     75}
    7276
    7377/** FindBugs configuration */
Note: See TracChangeset for help on using the changeset viewer.