osmith has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ci/+/29740 )
Change subject: ansible/setup-simtest: pre-install pysim depends
......................................................................
ansible/setup-simtest: pre-install pysim depends
Avoid spending time to install the depends of pysim in each CI job.
Closes: OS#5497
Change-Id: I1e9ddb93f05108146a219bd28cf1e9332764bf8e
---
M ansible/setup-simtest.yml
1 file changed, 20 insertions(+), 0 deletions(-)
Approvals:
laforge: Looks good to me, approved
pespin: Looks good to me, but someone else must approve
Jenkins Builder: Verified
diff --git a/ansible/setup-simtest.yml b/ansible/setup-simtest.yml
index 6eb67fc..edc250d 100644
--- a/ansible/setup-simtest.yml
+++ b/ansible/setup-simtest.yml
@@ -21,6 +21,26 @@
- virtualenv
install_recommends: no
+ - name: "pysim: get requirements.txt"
+ get_url:
+ url:
https://gitea.osmocom.org/sim-card/pysim/raw/branch/master/requirements.txt
+ dest: /tmp/pysim_requirements.txt
+
+ - name: "pysim: install deps from requirements.txt"
+ pip:
+ executable: pip3
+ requirements: /tmp/pysim_requirements.txt
+
+ #
https://gitea.osmocom.org/sim-card/pysim/src/branch/master/contrib/jenkins.…
+ - name: "pysim: install other deps needed for contrib/jenkins.sh"
+ pip:
+ executable: pip3
+ name:
+ -
"git+https://github.com/osmocom/sphinx-argparse@master#egg=sphinx-argparse"
+ - pylint
+ - sphinx
+ - sphinxcontrib-napoleon
+
roles:
- name: osmocom-jenkins-slave
generic_slave: false
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ci/+/29740
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I1e9ddb93f05108146a219bd28cf1e9332764bf8e
Gerrit-Change-Number: 29740
Gerrit-PatchSet: 4
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: msuraev <msuraev(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged