Stamatis> do we have another option so that the build does not fail on Windows?
It boils down to a question: should the build fail if the source files contain unexpected line endings? Suppose someone uses Windows, and they create test_sql_plan.txt file with wrong line endings (==LF). Should the build fail? Suppose someone uses Linux and they create a file with CRLF line endings. Should the build fail? Of course, Git will normalize the line endings at commit time, and everybody who pulls that commit would get the normalized file. However, if the local file is different from what Git expects, it might result in hard to understand conditions like unexpected test failures or inability to reproduce CI test failure. Vladimir
