diff options
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 |