diff options
author | Dominik Picheta <dominikpicheta@gmail.com> | 2016-09-17 22:22:42 +0200 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@gmail.com> | 2016-09-17 22:22:42 +0200 |
commit | 80726b84fd3142eccacfd890a150629bc3636686 (patch) | |
tree | 1cc468a5c67024fe60819103d99b16134613ad14 | |
parent | 07c637c24c2717775159b00fd51bff81a0a4f3ed (diff) | |
download | Nim-80726b84fd3142eccacfd890a150629bc3636686.tar.gz |
CI: Install FASM via apt-get instead of manually.
-rw-r--r-- | ci/deps.sh | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ci/deps.sh b/ci/deps.sh index 9ca70b6d2..0334e873e 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 |