Skip to content

Commit 99c0afa

Browse files
Fix linux debug symbols not showing (#2584)
#### Reference Issues/PRs <!--Example: Fixes #1234. See also #3456.--> #### What does this implement or fix? #2335 since this no debug symbols are being uploaded in releases or in any builds as they stopped appearing in the artefacts They are now showing https://github.com/man-group/ArcticDB/actions/runs/16986080679?pr=2584 scroll down to build-metadata-linux artefacts #### Any other comments? #### Checklist <details> <summary> Checklist for code changes... </summary> - [ ] Have you updated the relevant docstrings, documentation and copyright notice? - [ ] Is this contribution tested against [all ArcticDB's features](../docs/mkdocs/docs/technical/contributing.md)? - [ ] Do all exceptions introduced raise appropriate [error messages](https://docs.arcticdb.io/error_messages/)? - [ ] Are API changes highlighted in the PR description? - [ ] Is the PR labelled as enhancement or bug so it appears in autogenerated release notes? </details> <!-- Thanks for contributing a Pull Request to ArcticDB! Please ensure you have taken a look at: - ArcticDB's Code of Conduct: https://github.com/man-group/ArcticDB/blob/master/CODE_OF_CONDUCT.md - ArcticDB's Contribution Licensing: https://github.com/man-group/ArcticDB/blob/master/docs/mkdocs/docs/technical/contributing.md#contribution-licensing -->
1 parent 0cd6c30 commit 99c0afa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

build_tooling/prep_cpp_build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ case `uname -a` in
3434
popd || return
3535
;;
3636
*)
37+
pushd $(realpath $(dirname $BASH_SOURCE))/../cpp
3738
if [[ -n "$ARCTICDB_BUILD_DIR" ]] ; then
3839
if [[ "$CIBUILDWHEEL" == "1" ]] ; then
3940
ARCTICDB_BUILD_DIR="/host$ARCTICDB_BUILD_DIR"
@@ -43,5 +44,6 @@ case `uname -a` in
4344
[[ ! -e out ]] || rm -rf out
4445
ln -s "$ARCTICDB_BUILD_DIR" out
4546
fi
47+
popd || return
4648
esac
4749

0 commit comments

Comments
 (0)