Skip to content
Snippets Groups Projects
Verified Commit d67dafaf authored by Julian Ospald's avatar Julian Ospald :tea:
Browse files

Skip binary stipping on mac due to code signing issues

parent 8afabf3f
No related branches found
No related tags found
1 merge request!241Darwin codesign
Pipeline #48198 passed
......@@ -36,7 +36,8 @@ mkdir out
binary=$(ecabal new-exec -w ghc-${GHC_VERSION} --verbose=0 --offline sh -- -c 'command -v ghcup')
ver=$("${binary}" --numeric-version)
if [ "${OS}" = "DARWIN" ] ; then
strip "${binary}"
# due to some code signing issues on M1s, we just skip stripping altogether
:
else
strip -s "${binary}"
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment