We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7d7b84 commit 11700f3Copy full SHA for 11700f3
.github/workflows/validate.yml
@@ -122,7 +122,8 @@ jobs:
122
if [[ ${{ runner.os }} == 'Windows' ]]; then
123
CABAL_EXEC=$(cygpath $CABAL_EXEC)
124
fi
125
- tar -cvf cabal-head.tar -C $(dirname "$CABAL_EXEC") $(basename "$CABAL_EXEC")
+ # Using sparse(-S) option to fix bad. binaries in macOS
126
+ tar -Scvf cabal-head.tar -C $(dirname "$CABAL_EXEC") $(basename "$CABAL_EXEC")
127
echo "CABAL_EXEC_TAR=cabal-head.tar" >> $GITHUB_ENV
128
129
# We upload the cabal executable built with the ghc used in the release for:
0 commit comments