DCIT / perl-CryptX

https://metacpan.org/pod/CryptX
Other
34 stars 23 forks source link

non-Linux CI #80

Closed FGasper closed 2 years ago

FGasper commented 2 years ago

2 commits: the first adds just macOS CI, per request.

The 2nd commit adds Windows & Cygwin. Both of these fail; the failures may or may not be legitimate.

FGasper commented 2 years ago

That macOS breakage is interesting … it didn’t happen for me.

FGasper commented 2 years ago

The Windows failures may be legit … they happen for me in a Windows VM.

karel-m commented 2 years ago

On top your PR I have turned off AUTHOR_MODE for mac/windows/cygwin (which fixed mac builds/tests).

For cygwin I added

The rest of Windows (+cygwin) failures were related to LF vs CRLF and I fixed them by:

git config --global core.autocrlf false
git config --global core.eol lf

Now they are "all green".

Thank you for your time.