aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/setup-simtest.yml
blob: 8ab6f7e4f0ccdd22c631c6c2a9845b1d0426b2a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
- name: setup jenkins slaves
  hosts: simtester
  user: root
  tasks:
    - name: apt-get update
      apt:
        cache_valid_time: 3600
        update_cache: yes

    - name: install common utilities
      apt:
        name: "{{ item }}"
        install_recommends: no
      with_items:
        - vim
        - ca-certificates
        - python3-minimal
        - python3-setuptools
        - python3-pip
        - python3-serial
        - python3-pyscard
        - virtualenv

  roles:
    - name: osmocom-jenkins-slave
      generic_slave: false
      install_jenkins_utilities: false
      install_osmocom_build_deps: false
      ttcn3_slave: false
      tags:
        - jenkins-slave