aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-03-10 19:43:09 +0100
committerHarald Welte <laforge@gnumonks.org>2019-03-15 08:21:00 +0100
commit915a2f76aa831acd102331907d6dfe3df93318c5 (patch)
tree876045bd6cfd4b5e924404355444eecd27baa61e
parentcb944d35f3f1b3e652f776ef9f114fc369d3bb01 (diff)
build_deps: add libulfius-dev and libjansson-dev for osmo-remsim
-rw-r--r--ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml b/ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml
index 1a53b57..efbf94a 100644
--- a/ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml
+++ b/ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml
@@ -120,3 +120,13 @@
with_items:
- liblimesuite-dev
when: ansible_distribution == 'Debian' and ansible_distribution_version >= '9'
+
+- name: install osmo-remsim dependencies
+ apt:
+ name: "{{ item }}"
+ cache_valid_time: 3600
+ update_cache: yes
+ with_items:
+ - libjansson-dev
+ - libulfius-dev
+ when: ansible_distribution == 'Debian' and ansible_distribution_version == '9'