jjb: Add binutils-gdb base jobs
[lttng-ci.git] / automation / ansible / roles / binutils-gdb / tasks / main.yml
1 ---
2 # Include variables and define needed variables.
3 - name: Include OS-specific variables.
4 include_vars: "{{ ansible_os_family }}.yml"
5
6 - name: Define binutils_gdb_packages.
7 set_fact:
8 binutils_gdb_packages: "{{ __binutils_gdb_packages | list }}"
9 when: binutils_gdb_packages is not defined
10
11 # Setup/install tasks.
12 - include: setup-RedHat.yml
13 when: ansible_os_family == 'RedHat'
14
15 - include: setup-Debian.yml
16 when: ansible_os_family == 'Debian'
17
18 - include: setup-Alpine.yml
19 when: ansible_os_family == 'Alpine'
20
21 - include: setup-Suse.yml
22 when: ansible_os_family == 'Suse'
This page took 0.030175 seconds and 5 git commands to generate.