ansible: Add support for Debian sid
[lttng-ci.git] / automation / ansible / roles / cross-compilers / tasks / setup-Debian.yml
CommitLineData
601db8ee
MJ
1---
2- name: Update apt cache.
3 apt: update_cache=yes cache_valid_time=86400
4
a862e336
KS
5- name: Add snapshot soures for gcc-11-powerpc/riscv64
6 when: ansible_distribution == 'Debian'
7 block:
8 - ansible.builtin.copy:
9 dest: /etc/apt/preferences.d/snapshot.pref
10 content: "Package: *\nPin: origin \"snapshot.debian.org\"\nPin-Priority: 400\n"
ece5559f 11 when: cross_compilers_debian_bookworm_snapshot
a862e336
KS
12 - ansible.builtin.apt_repository:
13 repo: 'deb [check-valid-until=no] https://snapshot.debian.org/archive/debian/20230109T091852Z/ bookworm main'
ece5559f 14 state: "{{cross_compilers_debian_bookworm_snapshot|ternary('present', 'absent')}}"
a862e336
KS
15 - ansible.builtin.apt:
16 update_cache: true
17
0eb6d73e 18- name: Ensure cross-compilers packages are installed.
58e747d8 19 apt: "name={{ cross_compilers_packages }} state=present"
e261a28e
KS
20
21- name: Install legacy cross compilers
ece5559f 22 when: ansible_distribution == 'Debian' and ansible_architecture == 'x86_64' and compilers_legacy_install
e261a28e
KS
23 block:
24 # This step needs to happen after the cross compiler packages are installed
25 # so the libgcc cross libraries can be copied
26 - name: Copy gcc-cross libs
27 ansible.builtin.command:
28 argv: ['cp', '-r', "/usr/lib/gcc-cross/{{item}}/12/", "/usr/lib/gcc-cross/{{item}}/4.8.5"]
29 creates: "/usr/lib/gcc-cross/{{item}}/4.8.5"
30 with_items:
31 - aarch64-linux-gnu
32 - arm-linux-gnueabihf
33 - i686-linux-gnu
34 - powerpc64le-linux-gnu
35 - powerpc-linux-gnu
36 - riscv64-linux-gnu
37 - s390x-linux-gnu
4f6c1ba9 38 - name: Download gcc-4.8 cross compiler binaries
e261a28e
KS
39 # These binaries built from files/Containerfile
40 ansible.builtin.get_url:
41 url: https://obj.internal.efficios.com/jenkins/gcc-4.8-x86_64-linux-gnu-cross.tgz
42 dest: /root/gcc-4.8-x86_64-linux-gnu-cross.tgz
4f6c1ba9
KS
43 register: cross_gcc48_download
44 - name: Extract gcc-4.8 cross compiler binaries
45 when: cross_gcc48_download.changed
e261a28e
KS
46 ansible.builtin.command:
47 argv: ['tar', '-C', '/', '-xzf', '/root/gcc-4.8-x86_64-linux-gnu-cross.tgz']
4f6c1ba9
KS
48
49 - name: Download gcc-5.5 cross compiler binaries
50 ansible.builtin.get_url:
51 url: https://obj.internal.efficios.com/jenkins/gcc-5.5-x86_64-linux-gnu-cross.tgz
52 dest: /root/gcc-5.5-x86_64-linux-gnu-cross.tgz
53 register: cross_gcc55_download
54 - name: Extract gcc-5.5 cross compiler binaries
55 when: cross_gcc55_download.changed
56 ansible.builtin.command:
57 argv: ['tar', '-xzf', '/root/gcc-5.5-x86_64-linux-gnu-cross.tgz', '-C', '/']
This page took 0.031401 seconds and 4 git commands to generate.