We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b482bf2 commit 48aa774Copy full SHA for 48aa774
1 file changed
.github/workflows/unit-tests.yml
@@ -80,7 +80,13 @@ jobs:
80
stack test ${{ matrix.stack-args }} --haddock --no-haddock-deps --ghc-options="-Werror" --copy-bins --local-bin-path bin
81
82
# Get output about whether the exe is dynamically linked
83
- if [[ "${{ matrix.extra-suffix }}" == "alpine" ]]
+ if [[ "${{ matrix.os }}" == "macos-latest" ]]
84
+ then
85
+ echo "Skipping ldd check on Mac"
86
+ elif [[ "${{ matrix.os }}" == "windows-latest" ]]
87
88
+ echo "Skipping ldd check on Windows"
89
+ elif [[ "${{ matrix.extra-suffix }}" == "alpine" ]]
90
then
91
# ldd returns exit code 1 if it's static, so failure is success
92
(ldd ./bin/stack && exit 1) || true
0 commit comments