123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- stages:
- # Test with alpine
- - test
- # Real distrubutions
- - real
- # OCaml version 4.02
- ocaml_402:
- before_script:
- - sudo apk update && sudo apk add m4
- stage: test
- image: ocaml/opam:alpine_ocaml-4.02.3
- script: "./gitlab-ci.sh"
- allow_failure: false
- # OCaml version 4.00
- ocaml_400:
- before_script:
- - sudo apk update && sudo apk add m4
- stage: test
- image: ocaml/opam:alpine_ocaml-4.00.1
- script: "./gitlab-ci.sh"
- allow_failure: true
- # OCaml version 4.01
- ocaml_401:
- before_script:
- - sudo apk update && sudo apk add m4
- stage: test
- image: ocaml/opam:alpine_ocaml-4.01.0
- script: "./gitlab-ci.sh"
- allow_failure: true
- # OCaml version 4.03
- ocaml_403:
- before_script:
- - sudo apk update && sudo apk add m4
- stage: test
- image: ocaml/opam:alpine_ocaml-4.03.0
- script: "./gitlab-ci.sh"
- allow_failure: true
- # OCaml version 4.03
- ocaml_403_flambda:
- before_script:
- - sudo apk update && sudo apk add m4
- stage: test
- image: ocaml/opam:alpine_ocaml-4.03.0_flambda
- script: "./gitlab-ci.sh"
- allow_failure: true
- # ---------------
- ubuntu:
- before_script:
- - sudo apt-get update && sudo apt-get install m4
- stage: real
- image: ocaml/opam:ubuntu
- script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
- allow_failure: false
- debian:
- before_script:
- - sudo apt-get update && sudo apt-get install m4
- stage: real
- image: ocaml/opam:debian
- script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
- allow_failure: false
- centos:
- before_script:
- - sudo dnf install m4-devel
- stage: real
- image: ocaml/opam:centos
- script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
- allow_failure: false
- fedora:
- before_script:
- - sudo dnf install m4-devel
- stage: real
- image: ocaml/opam:fedora
- script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
- allow_failure: false
- opensuse:
- stage: real
- image: ocaml/opam:opensuse
- script: "export OC_NOTEST=true; ./gitlab-ci.sh system"
- allow_failure: false
|