From 0969679ca53e29856fcb29f7a2148cb32677f9b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Thu, 12 Feb 2026 10:43:44 +0100 Subject: [PATCH] Remove AWS CLI from rustc-perf playbook --- ansible/playbooks/rustc-perf.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/ansible/playbooks/rustc-perf.yml b/ansible/playbooks/rustc-perf.yml index e63c03bab..551daf5c8 100644 --- a/ansible/playbooks/rustc-perf.yml +++ b/ansible/playbooks/rustc-perf.yml @@ -44,28 +44,6 @@ - linux-cloud-tools-generic state: present - # Install AWS CLI binary used to upload self-profile artifacts to S3 - # v2 is for some reason very slow when uploading artifacts to S3, so use v1 instead - - name: Install AWS CLI v1 - block: - - name: Download AWS CLI v1 zip file - get_url: - url: "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" - dest: "/tmp/awscli-bundle.zip" - mode: '0644' - - - name: Extract AWS CLI v1 zip file - unarchive: - src: "/tmp/awscli-bundle.zip" - dest: "/tmp" - remote_src: yes - - - name: Install AWS CLI v1 - command: python3 /tmp/awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws - become: yes - args: - creates: /usr/local/bin/aws - # Install rustup/rustc/cargo - name: check if cargo is installed become: yes