mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
Empty paths in a colon separated list would be considered as the current directory, so have to ensure $PATH and $LD_LIBRARY_PATH are not empty before separating it with :
17 lines
414 B
Bash
17 lines
414 B
Bash
# Some debug info
|
|
echo "Running on $CI_RUNNER_ID ($CI_RUNNER_DESCRIPTION) with tags $CI_RUNNER_TAGS."
|
|
|
|
# Packages
|
|
apt-get update -qq
|
|
apt-get install -y -qq build-essential git libcurl4-openssl-dev libsdl1.2-dev libgc-dev nodejs
|
|
|
|
gcc -v
|
|
|
|
export PATH=$(pwd)/bin${PATH:+:$PATH}
|
|
|
|
# Nimble deps
|
|
nim e install_nimble.nims
|
|
nim e tests/test_nimscript.nims
|
|
nimble update
|
|
nimble install zip opengl sdl1 jester@#head niminst
|