From 92ccbd0e4fc798526fee4fa38b4c7ce8f9e7c190 Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Thu, 9 Nov 2023 14:40:00 -0500 Subject: [PATCH] ansible: Add support for Debian 11 Change-Id: Ia6a3202f5fdf130b8fc2103f7ce2c30bbf2af099 Signed-off-by: Kienan Stewart --- .../roles/compilers/vars/Debian-11.yml | 25 +++++++++++++++++++ .../roles/cross-compilers/vars/Debian-11.yml | 25 +++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 automation/ansible/roles/compilers/vars/Debian-11.yml create mode 100644 automation/ansible/roles/cross-compilers/vars/Debian-11.yml diff --git a/automation/ansible/roles/compilers/vars/Debian-11.yml b/automation/ansible/roles/compilers/vars/Debian-11.yml new file mode 100644 index 0000000..4123652 --- /dev/null +++ b/automation/ansible/roles/compilers/vars/Debian-11.yml @@ -0,0 +1,25 @@ +--- +compilers_packages: + - gcc + - gcc-9 + - gcc-10 + - g++ + - g++-9 + - g++-10 + - clang + - clang-9 + - clang-11 + - clang-13 + - libclang-dev + - libclang-9-dev + - libclang-11-dev + - libclang-13-dev + - clang-format + - clang-format-9 + - clang-format-11 + - clang-format-13 + - clang-tidy + - clang-tidy-9 + - clang-tidy-11 + - clang-tidy-13 + - bear diff --git a/automation/ansible/roles/cross-compilers/vars/Debian-11.yml b/automation/ansible/roles/cross-compilers/vars/Debian-11.yml new file mode 100644 index 0000000..cff0cde --- /dev/null +++ b/automation/ansible/roles/cross-compilers/vars/Debian-11.yml @@ -0,0 +1,25 @@ +--- +cross_compilers_packages: + - gcc-aarch64-linux-gnu + - gcc-arm-linux-gnueabihf + - gcc-i686-linux-gnu + - gcc-powerpc64le-linux-gnu + - gcc-powerpc-linux-gnu + - gcc-riscv64-linux-gnu + - gcc-s390x-linux-gnu + + - gcc-10-aarch64-linux-gnu + - gcc-10-arm-linux-gnueabihf + - gcc-10-i686-linux-gnu + - gcc-10-powerpc64le-linux-gnu + - gcc-10-powerpc-linux-gnu + - gcc-10-riscv64-linux-gnu + - gcc-10-s390x-linux-gnu + + - gcc-9-aarch64-linux-gnu + - gcc-9-arm-linux-gnueabihf + - gcc-9-i686-linux-gnu + - gcc-9-powerpc64le-linux-gnu + - gcc-9-powerpc-linux-gnu + - gcc-9-riscv64-linux-gnu + - gcc-9-s390x-linux-gnu -- 2.34.1