Verifies the integrety of the projects, as builds are executed immediately after a code change was detected. This plan provides no artifiacts (use a nightly build instead).

Build result summary

Details

Completed
Queue duration
< 1 second
Duration
2 minutes
Labels
None
Agent
Default Agent
Revision
4e755241b5213fd2c6cf72102d30a16ef8b7fa69
Total tests
218
Successful since
#1363 ()

Tests

Code commits

Author Commit Message Commit date
Dave Cridland <dave@cridland.net> Dave Cridland <dave@cridland.net> 4e755241b5213fd2c6cf72102d30a16ef8b7fa69 Merge pull request #924 from akrherz/die_crlf_die
remove CRLF from *.{html,css,sql,xml,js,properties,jspf,java,jsp}
akrherz <akrherz@iastate.edu> akrherz <akrherz@iastate.edu> 22bf8d26c3c64702abde9bc23151b142916b5c47 remove now-unneeded return statements
akrherz <akrherz@iastate.edu> akrherz <akrherz@iastate.edu> 66b3cb97c8f0a9d82c73ac74c742b3185ea76b40 ensure all files end with line feed
command form this time was
git ls-files  '*.jsp' | while read f; do tail -n1 $f | read -r _ || echo >> $f; done
akrherz <akrherz@iastate.edu> akrherz <akrherz@iastate.edu> 42f2cd51cdbd5883201e2ed57aff49d1f0e024a7 replace tabs with spaces, when tabs start the line
the command line form was
find . -name '*.jsp' ! -type d -exec bash -c 'expand -i -t 4 "$0" > /tmp/e && mv /tmp/e "$0"' {} \;
akrherz <akrherz@iastate.edu> akrherz <akrherz@iastate.edu> 0bc646f96a7b96b8b81a91f9970e91a622a33187 remove CRLF from *.{html,css,sql,xml,js,properties,jspf,java,jsp}
all done via the magic of dos2unix