diff options
author | Dominik Picheta <dominikpicheta@gmail.com> | 2016-09-18 01:36:33 +0200 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@gmail.com> | 2016-09-18 01:36:33 +0200 |
commit | 2ee9a27be3cd5ccc9e64dd8ea9ad2df68c54ea82 (patch) | |
tree | 1ad42902fa8a4ce3c792a9928f79ffa771843a60 /ci | |
parent | 80726b84fd3142eccacfd890a150629bc3636686 (diff) | |
download | Nim-2ee9a27be3cd5ccc9e64dd8ea9ad2df68c54ea82.tar.gz |
CI: Fixes Linux tests.
Squashed commit of the following: commit d72fd199a7e460348283a92fcd8b9ebad50b5984 Author: Dominik Picheta <dominikpicheta@gmail.com> Date: Sun Sep 18 01:36:01 2016 +0200 CI: csources build needs git. commit 5dc88a77675f1a6e315b0360d6a880d7b48deb8b Author: Dominik Picheta <dominikpicheta@gmail.com> Date: Sun Sep 18 00:35:16 2016 +0200 CI: Install build-essentials for c sources. commit 64b06c3c8a92b516faaf1a2267fc5258a8993c2b Author: Dominik Picheta <dominikpicheta@gmail.com> Date: Sat Sep 17 23:47:54 2016 +0200 CI: Add Git as dependency. commit 67c2ddb8fe2e18667e532e6f593f1bf4651d5995 Author: Dominik Picheta <dominikpicheta@gmail.com> Date: Sat Sep 17 23:42:25 2016 +0200 CI: Fix gcc call before everything else. commit a6f0b1f8af4985796d382ef43b9a3835adf38329 Author: Dominik Picheta <dominikpicheta@gmail.com> Date: Sat Sep 17 23:39:19 2016 +0200 CI: Install build-essential in deps.sh commit e5c95e098b6699b589de3f8262fedacde1513381 Author: Dominik Picheta <dominikpicheta@gmail.com> Date: Sat Sep 17 23:35:47 2016 +0200 Remove install of build-essential. CI: Remove build-essential install. commit 1d9085cd40d6dfbb222ae7636e526fa286cd0e2e Author: Dominik Picheta <dominikpicheta@gmail.com> Date: Sat Sep 17 23:26:51 2016 +0200 CI: Install build-essential instead of gcc. commit 0210abaa712885f5dc9eae980c20c0e300710b38 Author: Dominik Picheta <dominikpicheta@gmail.com> Date: Sat Sep 17 23:24:54 2016 +0200 Change image to ubuntu.
Diffstat (limited to 'ci')
-rw-r--r-- | ci/deps.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ci/deps.sh b/ci/deps.sh index 0334e873e..50680e604 100644 --- a/ci/deps.sh +++ b/ci/deps.sh @@ -1,11 +1,13 @@ # Some debug info echo "Running on $CI_RUNNER_ID ($CI_RUNNER_DESCRIPTION) with tags $CI_RUNNER_TAGS." -gcc -v + # Packages apt-get update -qq -apt-get install -y -qq libcurl4-openssl-dev libsdl1.2-dev libgc-dev nodejs fasm +apt-get install -y -qq build-essential git libcurl4-openssl-dev libsdl1.2-dev libgc-dev nodejs fasm + +gcc -v -which fasm +fasm -v export PATH=$(pwd)/bin:$PATH # Nimble deps |