From 6d26a60cbefc20b53cc0daf65181ac998cd27582 Mon Sep 17 00:00:00 2001
From: Alam Ed Arias <alam@srb2.org>
Date: Fri, 5 Feb 2016 23:19:38 -0500
Subject: [PATCH] travis: cache 7z SFX

---
 .travis.yml | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index dfc1aef89..7a9c7c372 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,5 +1,4 @@
 language: c
-
 sudo: required
 dist: trusty
 
@@ -10,6 +9,10 @@ compiler:
   - gcc
   - clang
 
+cache:
+  directories:
+    - $HOME/srb2_cache
+
 addons:
   apt:
     packages:
@@ -19,20 +22,12 @@ addons:
     - libgme-dev
     - p7zip-full
 
-before_install:
-  - cmake --version
-
 before_script:
   - mkdir cache
-  - wget http://rosenthalcastle.org/srb2/SRB2-v2114-Installer.exe -c -O cache/SRB2-v2114-Installer.exe
-  - 7z x cache/SRB2-v2114-Installer.exe -oassets
+  - wget http://rosenthalcastle.org/srb2/SRB2-v2114-Installer.exe -c -O $HOME/srb2_cache/SRB2-v2114-Installer.exe
+  - 7z x $HOME/srb2_cache/SRB2-v2114-Installer.exe -oassets
   - mkdir build
   - cd build
   - cmake ..
 
 script: make
-
-cache:
-  directories:
-    - $HOME/.ccache
-    - cache
-- 
GitLab