Skip to content

Commit

Permalink
stripping release builds of debug symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
Asherda committed Dec 27, 2018
1 parent afc3cbd commit 528d7dc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ build:linux:
- cp nheqminer build/nheqminer
- cd build
- chmod +x nheqminer/nheqminer
- if [ "${CI_COMMIT_REF_NAME}" = "master" ]; then strip -g nheqminer/nheqminer; fi
- tar -czf nheqminer-Linux-v${VERSION}.tar.gz nheqminer
- curl -F file=@nheqminer-Linux-v${VERSION}.tar.gz
-F channels="$CPU_POOL_POST_CHANNEL"
Expand Down Expand Up @@ -52,6 +53,7 @@ build:macos:
- for dylib in $DYLIBS; do cp -rf $dylib Nheqminer/; done
- for dylib in $DYLIBS; do install_name_tool -change $dylib @executable_path/`basename $dylib` nheqminer/nheqminer; done;
- chmod +x nheqminer/nheqminer
- if [ "${CI_COMMIT_REF_NAME}" = "master" ]; then strip -g nheqminer/nheqminer; fi
- tar -czf nheqminer-MacOS-v${VERSION}.tar.gz nheqminer
- curl -F file=@nheqminer-MacOS-v${VERSION}.tar.gz
-F channels="$CPU_POOL_POST_CHANNEL"
Expand Down

0 comments on commit 528d7dc

Please sign in to comment.