From 80726b84fd3142eccacfd890a150629bc3636686 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 17 Sep 2016 22:22:42 +0200 Subject: [PATCH] CI: Install FASM via apt-get instead of manually. --- ci/deps.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/ci/deps.sh b/ci/deps.sh index 9ca70b6d2a..0334e873ed 100644 --- a/ci/deps.sh +++ b/ci/deps.sh @@ -3,12 +3,8 @@ echo "Running on $CI_RUNNER_ID ($CI_RUNNER_DESCRIPTION) with tags $CI_RUNNER_TAG gcc -v # Packages apt-get update -qq -apt-get install -y -qq libcurl4-openssl-dev libsdl1.2-dev libgc-dev nodejs -# FASM -wget http://nim-lang.org/download/fasm-1.71.39.tgz -tar xvf fasm-1.71.39.tgz -# PATH handling -export PATH=$(pwd)/fasm:$PATH +apt-get install -y -qq libcurl4-openssl-dev libsdl1.2-dev libgc-dev nodejs fasm + which fasm export PATH=$(pwd)/bin:$PATH