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 /.gitlab-ci.yml | |
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 '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7e34dcc4c..e53b91732 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,4 @@ -# use the official gcc image, based on debian -# can use versions as well, like gcc:5.2 -# see https://hub.docker.com/_/gcc/ -image: gcc +image: ubuntu:16.04 stages: - pre-build @@ -85,6 +82,8 @@ test-windows: .csources: &csources_definition stage: test script: + - apt-get update -qq + - apt-get install -y -qq build-essential git - nim -v - ./koch csources - ./koch xz |