From: Michael Jeanson Date: Fri, 17 Jan 2025 16:28:15 +0000 (-0500) Subject: ansible: add s390x nodes X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=bbaf00de8cdb9b6fe545381256a689147e8ed005;p=lttng-ci.git ansible: add s390x nodes Change-Id: I8baad5194a91fd114381f2af6c55b175d67b9d0c Signed-off-by: Michael Jeanson --- diff --git a/automation/ansible/hosts b/automation/ansible/hosts index 11c295a..f2a79b7 100644 --- a/automation/ansible/hosts +++ b/automation/ansible/hosts @@ -91,6 +91,10 @@ ci-node-deb13-riscv64-02 ci-node-deb13-riscv64-03 ci-node-deb13-riscv64-04 +[node_s390x] +ci-node-deb12-s390x-01 +ci-node-deb12-s390x-02 + [node_i386] ci-node-deb12-i386-1a-01 ci-node-deb12-i386-1b-01 @@ -232,6 +236,7 @@ node_armhf node_arm64 node_ppc64el node_riscv64 +node_s390x node_standalone node_sles node_el diff --git a/automation/ansible/node_s390x.yml b/automation/ansible/node_s390x.yml new file mode 100644 index 0000000..c9dc607 --- /dev/null +++ b/automation/ansible/node_s390x.yml @@ -0,0 +1,10 @@ +- hosts: node_s390x + roles: + - common + - common-node + - babeltrace + - librseq + - liburcu + - lttng-ust + - lttng-tools + - lttng-modules diff --git a/automation/ansible/site.yml b/automation/ansible/site.yml index 729af6b..70eca0a 100644 --- a/automation/ansible/site.yml +++ b/automation/ansible/site.yml @@ -5,6 +5,7 @@ - import_playbook: node_arm64.yml - import_playbook: node_ppc64el.yml - import_playbook: node_riscv64.yml +- import_playbook: node_s390x.yml - import_playbook: node_i386.yml - import_playbook: node_amd64.yml - import_playbook: node_standalone.yml