summary refs log tree commit diff stats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@gmail.com>2016-09-29 01:19:11 +0200
committerDominik Picheta <dominikpicheta@gmail.com>2016-09-29 01:19:43 +0200
commitb790159bb936655fdd1b16119c6b9b5f8548ff9e (patch)
tree153f129790a4cdd334128eb5875f00c8e461975d /.gitlab-ci.yml
parentae0e5604f4d643488b668a82f2eec90f2b2d4e4c (diff)
downloadNim-b790159bb936655fdd1b16119c6b9b5f8548ff9e.tar.gz
CI: NSIS fixes and temporary removal of Linux builds.
Squashed commit of the following:

commit af422c72ccd31054ecb097313275e538c2c8f1ad
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date:   Thu Sep 29 00:42:39 2016 +0200

    CI: Another attempt.

commit f187712192bf80394d0efd7e8ebfcdc07a13ca5a
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date:   Thu Sep 29 00:32:53 2016 +0200

    CI: Remove building of docs before NSIS build.

commit 92abf82d9400ff7f03d7fbfdaaeeb2ee93e803a5
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date:   Thu Sep 29 00:18:24 2016 +0200

    CI: Attempt to fix incorrect mingw arch.

commit 2ec54f89f9725208559f2080dd0f1533b9ae27e0
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date:   Wed Sep 28 23:40:51 2016 +0200

    CI: Rebuild koch so that correct mingw links are put in NSIS.

commit 3118f0fea6fb8d7178e9267d3bf198b4784cb247
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date:   Wed Sep 28 22:36:40 2016 +0200

    CI: Fixes ci

commit fc4d14aa325dc1a95cf63092b209b919df450dcd
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date:   Wed Sep 28 22:35:00 2016 +0200

    CI: Disable linux for now.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml38
1 files changed, 1 insertions, 37 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0cf30eb89..54b40dcd7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -18,19 +18,6 @@ stages:
   tags:
     - windows
 
-build-linux:
-  stage: build
-  script:
-    - sh ci/build.sh
-  artifacts:
-    paths:
-      - bin/nim
-      - bin/nimd
-      - compiler/nim
-      - koch
-    expire_in: 1 week
-  tags:
-    - linux
 
 build-windows:
   stage: build
@@ -58,15 +45,7 @@ deploy-windows:
     - windows
     - fast
 
-test-linux:
-  stage: test
-  <<: *linux_set_path_def
-  script:
-    - sh ci/deps.sh
-    - nim c --taintMode:on tests/testament/tester
-    - tests/testament/tester --pedantic all
-  tags:
-    - linux
+
 
 test-windows:
   stage: test
@@ -79,18 +58,3 @@ test-windows:
     - windows
     - fast
 
-.csources: &csources_definition
-  stage: test
-  script:
-    - apt-get update -qq
-    - apt-get install -y -qq build-essential git
-    - nim -v
-    - ./koch csources
-    - ./koch xz
-  artifacts:
-    paths:
-      - build/c_code
-
-csources-linux:
-  <<: *csources_definition
-  <<: *linux_set_path_def