ansible: Install gcc-4.8 on Debian compiler nodes
[lttng-ci.git] / automation / ansible / roles / compilers / tasks / setup-Debian.yml
1 ---
2 - name: Add sources for gcc 4.8
3 when: ansible_distribution == 'Debian'
4 ansible.builtin.apt_repository:
5 repo: 'deb [trusted=yes] http://archive.debian.org/debian jessie main'
6
7 - name: Update apt cache.
8 apt: update_cache=yes cache_valid_time=86400
9
10 - name: Ensure compilers packages are installed.
11 apt: "name={{ compilers_packages }} state=present"
This page took 0.028928 seconds and 4 git commands to generate.