From 8c421e6afd7c2d737cbc4b7656970dd7d7d77233 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Tue, 5 Jun 2018 10:56:11 +0200 Subject: [PATCH 1/2] travis: drop stale devkitPro-cache The new pacman-based devkitPro installer is so fast that there's really no point in caching here, it takes more time to download the cache than to reinstall. --- .travis.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index c5929b5..1c485d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,6 @@ language: c sudo: false -cache: - directories: - - $HOME/devkitPro - install: - wget https://github.com/devkitPro/pacman/releases/download/devkitpro-pacman-1.0.1/devkitpro-pacman.deb && sudo dpkg -i devkitpro-pacman.deb From 88dbe31ddde195221b7e49e643399584cde17dcd Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Tue, 5 Jun 2018 11:03:03 +0200 Subject: [PATCH 2/2] travis: remove stale sudo-line A long time ago, setting sudo to false was the way to get builds run in the faster container-based infrastructure. That's no longer the case, and we actually use sudo. So let's drop that line. --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1c485d2..608be8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,5 @@ language: c -sudo: false - install: - wget https://github.com/devkitPro/pacman/releases/download/devkitpro-pacman-1.0.1/devkitpro-pacman.deb && sudo dpkg -i devkitpro-pacman.deb