laforge has submitted this change. (
https://gerrit.osmocom.org/c/pysim/+/27123 )
Change subject: contrib/jenkins.sh: Fix PUBLISH
......................................................................
contrib/jenkins.sh: Fix PUBLISH
There is no $base in this script, and the current form renders:
make: *** /docs: No such file or directory. Stop.
Build step 'Execute shell' marked build as failure
Change-Id: Ifcf27f7497daeb285dfb364bff20d0c861c77dcb
Related: OS#5271
---
M contrib/jenkins.sh
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
laforge: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 480f3e5..0fd2473 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -48,7 +48,7 @@
(cd docs && make html latexpdf)
if [ "$WITH_MANUALS" = "1" ] && [ "$PUBLISH" =
"1" ]; then
- make -C "$base/docs" publish
+ make -C "docs" publish
fi
# run the test with physical cards
--
To view, visit
https://gerrit.osmocom.org/c/pysim/+/27123
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Ifcf27f7497daeb285dfb364bff20d0c861c77dcb
Gerrit-Change-Number: 27123
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: merged