This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Max gerrit-no-reply at lists.osmocom.orgHello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/5482
to look at the new patch set (#4).
Add scripts to compilation tests in jenkins
Related: OS#2684
Change-Id: If098c20b1ad17c3868073b9fe07fd3795217c526
---
M contrib/jenkins.sh
1 file changed, 22 insertions(+), 6 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/python/osmo-python-tests refs/changes/82/5482/4
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index a60438e..1598836 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -2,14 +2,30 @@
set -ex
+COM_FLAGS='-m compileall'
+
# FIXME: remove once python 2 support is deprecated
-python2 ./setup.py install
-python2 tests/test_py2.py
-python2 -m compileall osmopy
+PY2=python2
+$PY2 ./setup.py install
+$PY2 tests/test_py2.py
+$PY2 $COM_FLAGS osmopy
+$PY2 $COM_FLAGS scripts/osmo_ctrl.py
+$PY2 $COM_FLAGS scripts/osmodumpdoc.py
+$PY2 $COM_FLAGS scripts/osmotestvty.py
+$PY2 $COM_FLAGS scripts/osmotestconfig.py
rm -rf ./build
-python3 ./setup.py install
-python3 tests/test_py3.py
-python3 -m compileall osmopy
+PY3=python3
+$PY3 ./setup.py install
+$PY3 tests/test_py3.py
+$PY3 $COM_FLAGS osmopy
+$PY3 $COM_FLAGS scripts/osmo_ctrl.py
+$PY3 $COM_FLAGS scripts/osmo_interact_common.py
+$PY3 $COM_FLAGS scripts/osmo_interact_ctrl.py
+$PY3 $COM_FLAGS scripts/osmo_interact_vty.py
+$PY3 $COM_FLAGS scripts/osmo_verify_transcript_ctrl.py
+$PY3 $COM_FLAGS scripts/osmo_verify_transcript_vty.py
+$PY3 $COM_FLAGS scripts/soap.py
+$PY3 $COM_FLAGS scripts/twisted_ipa.py
# TODO: add more tests
--
To view, visit https://gerrit.osmocom.org/5482
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: If098c20b1ad17c3868073b9fe07fd3795217c526
Gerrit-PatchSet: 4
Gerrit-Project: python/osmo-python-tests
Gerrit-Branch: master
Gerrit-Owner: Max <msuraev at sysmocom.de>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: Pau Espin Pedrol <pespin at sysmocom.de>