Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions ansible/playbooks/rustc-perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down