Builds and runs unit tests. More details of the release in https://wiki.openmrs.org/x/i4DTAw

Build: #644 was successful Run by child build REFAPP-OMODDISTRO

Stages & jobs

  1. Default Stage

  2. Release

    Requires a user to start manually

Build result summary

Details

Completed
Queue duration
7 seconds
Duration
5 minutes
Labels
None
Revisions
openmrs-module-webservices.rest
c694d51c5b724131e29f12e45e2ec62d5ea31131 c694d51c5b724131e29f12e45e2ec62d5ea31131
Release scripts
1aad5c8d3a6400ade338d1ee1b9fd6d34fe773fa 1aad5c8d3a6400ade338d1ee1b9fd6d34fe773fa
Total tests
1321
Successful since
#616 ()

Tests

Code commits

openmrs-module-webservices.rest
Author Commit Message Commit date
Daniel Kayiwa Daniel Kayiwa c694d51c5b724131e29f12e45e2ec62d5ea31131 c694d51c5b724131e29f12e45e2ec62d5ea31131 Merge pull request #247 from teleivo/eol
Convert lineendings from CRLF to LF in xmls
teleivo <mrteleivo@gmail.com> teleivo <mrteleivo@gmail.com> db40d5959dbda2278b8f8bb3dd51ab60fac6b0a6 db40d5959dbda2278b8f8bb3dd51ab60fac6b0a6 Convert lineendings from CRLF to LF in xmls
I basically ran

find omod-common/src -exec dos2unix {} \;

in all submodules src folders.

this converted line endings from CRLF to LF in some xml files which have
not been touched since we got rid of the mvn formatter plugin rule
forcing CRLF and use git to handle line endings appropriately.

Now git converts files if necessary from CRLF to LF (see
.gitattributes) this can obfuscate diffs, showing that the entire file
has changed although only line endings changed in every line.
Which is what we've seen in some past commits.

Check with "git show -w" and you'll see that nothing but the line
endings changed in this commit.