Parcourir la source

Allow real jobs to fail

 + Distributions with pretty old compiler may not be supported, we
 ignore this
Leo il y a 8 ans
Parent
commit
cd55d8686f
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 4 4
      .gitlab-ci.yml

+ 4 - 4
.gitlab-ci.yml

@@ -65,7 +65,7 @@ debian:
   stage: real
   stage: real
   image: ocaml/opam:debian
   image: ocaml/opam:debian
   script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
   script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
-  allow_failure: false
+  allow_failure: true
 
 
 centos:
 centos:
   before_script:
   before_script:
@@ -73,7 +73,7 @@ centos:
   stage: real
   stage: real
   image: ocaml/opam:centos
   image: ocaml/opam:centos
   script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
   script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
-  allow_failure: false
+  allow_failure: true
 
 
 fedora:
 fedora:
   before_script:
   before_script:
@@ -81,10 +81,10 @@ fedora:
   stage: real
   stage: real
   image: ocaml/opam:fedora
   image: ocaml/opam:fedora
   script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
   script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
-  allow_failure: false
+  allow_failure: true
 
 
 opensuse:
 opensuse:
   stage: real
   stage: real
   image: ocaml/opam:opensuse
   image: ocaml/opam:opensuse
   script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
   script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
-  allow_failure: false
+  allow_failure: true