summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSebastian Wiesner <lunaryorn@gmail.com>2014-03-16 19:19:08 +0100
committerSebastian Wiesner <lunaryorn@gmail.com>2014-03-16 19:19:08 +0100
commit22c45a28c1bfafc0d1117a64461ba68de8442811 (patch)
tree7f606e9e14f2e111c749ded68dffc831aa79916f /test
parent92d8ec5372f227fd8ba95edc350760b468ecc5b6 (diff)
Remove separate provision script
Diffstat (limited to 'test')
-rw-r--r--test/provision.sh47
1 files changed, 0 insertions, 47 deletions
diff --git a/test/provision.sh b/test/provision.sh
deleted file mode 100644
index 533381d..0000000
--- a/test/provision.sh
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/sh
-# Provision a unit testing VM.
-
-# Copyright (C) 2014 Sebastian Wiesner
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-# This script provisions Travis to run pkg-info unit tests.
-
-# This script must be run as root.
-
-apt-get update -qq -yy
-
-# Install basic tools
-apt-get install -qq -y make curl unzip python-software-properties
-
-# Add the Emacs PPA
-add-apt-repository -y ppa:cassou/emacs
-add-apt-repository -y ppa:ubuntu-elisp/ppa
-apt-get update -qq
-
-# Install the Emacs packages
-apt-get install -qq -yy emacs23-nox emacs23-el || exit 1
-apt-get install -qq -yy emacs24-nox emacs24-el || exit 1
-apt-get install -qq -yy emacs-snapshot-nox emacs-snapshot-el || exit 1
-
-# Use stable Emacs as default
-update-alternatives --set emacs /usr/bin/emacs24-nox
-
-# Install (stable) Cask
-cask_archive=/tmp/cask-master.zip
-cask_dir=/opt/cask-master
-rm -rf "${cask_archive}" "${cask_dir}"
-curl -fsSLo "${cask_archive}" https://github.com/cask/cask/archive/master.zip
-unzip -qq -d /opt "${cask_archive}" || exit 1
-ln -sf "${cask_dir}/bin/cask" /usr/local/bin/cask || exit 1