Index: trunk/.travis.yml
===================================================================
--- trunk/.travis.yml	(revision 13239)
+++ trunk/.travis.yml	(revision 13240)
@@ -7,5 +7,5 @@
     - os: linux
       dist: trusty
-      sudo: false
+      sudo: required
       jdk:
         - oraclejdk9
Index: trunk/appveyor.yml
===================================================================
--- trunk/appveyor.yml	(revision 13239)
+++ trunk/appveyor.yml	(revision 13240)
@@ -8,7 +8,14 @@
   - refreshenv
 build_script:
-  - ant compile javadoc dist distmac checkstyle pmd
+  - ant compile javadoc dist distmac checkstyle pmd spotbugs
 test_script:
   - ant test
+after_test:
+  - ps: |
+        $wc = New-Object 'System.Net.WebClient'
+        Get-ChildItem . -Name -Recurse 'TEST-*.xml'  |
+        Foreach-Object {
+            $wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path $_))
+        }
 artifacts:
   - path: dist\josm-custom.*
@@ -20,2 +27,3 @@
   - path: test\report
     type: zip
+  - path: hs_err_pid*.log
