Commit b6cf8452 by Ben Patterson

Fix for sitespeed on our fork.

parent 546a4e71
......@@ -32,6 +32,19 @@
- name: install sitespeed.io specific system packages
apt: pkg={{','.join(sitespeedio_debian_pkgs)}} state=present
# Install released version of sitespeedio
- name: install sitespeed.io
npm: name=sitespeed.io global=yes state=latest version=3.10.0
#- name: install sitespeed.io
# npm: name=sitespeed.io global=yes state=latest
# Temporary workaround to get an unreleased fix for sitespeed.io
- name: Create a clone of the sitespeed.io repo
git: >
repo=https://github.com/edx/sitespeed.io.git
dest=/tmp/sitespeedio
version=712f24ed57aef210a81062ce13863837ea570866
depth=1
- name: Install sitespeed.io from master
shell: >
npm install -g
chdir=/tmp/sitespeedio
sudo: yes
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment