Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

contrib/jenkins: remove PATH workaround #4

Merged
merged 1 commit into from
Jan 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions contrib/jenkins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,6 @@
# * WITH_MANUALS: build manual PDFs if set to "1"
# * PUBLISH: upload manuals after building if set to "1" (ignored without WITH_MANUALS = "1")

# ugly, ugly hack to work around the fact that we cannot _extend_ the path when executing
# a docker container. We can either override it (and loose our /opt/... toolchain paths)
# or we can not specify the /build_bin whcih means the osmo-build-dep.sh is not found
# See https://osmocom.org/issues/4911
if [ -d /build_bin ]; then
PATH=$PATH:/build_bin
export PATH
fi

if ! [ -x "$(command -v osmo-build-dep.sh)" ]; then
echo "Error: We need to have scripts/osmo-deps.sh from http://git.osmocom.org/osmo-ci/ in PATH !"
exit 2
Expand Down