Browse Source

Correct .gitlab-ci.yml mistakes

 + Understood jobs syntax (hopefully).
 + Using the CI linter now.
 + Found http://doc.gitlab.com/ce/ci/yaml/README.html.
Leo 9 years ago
parent
commit
bfc6a25bd6
1 changed files with 1 additions and 4 deletions
  1. 1 4
      .gitlab-ci.yml

+ 1 - 4
.gitlab-ci.yml

@@ -4,7 +4,4 @@ before_script:
 
 
 # OCaml version 4.02
 # OCaml version 4.02
 ocaml402:
 ocaml402:
-  - opam init --comp 4.02.3
-  - ./configure --enable-tests
-  - make test
-  - opam pin add oclaunch .
+  script: "opam init --comp 4.02.3;./configure --enable-tests;make test;opam pin add oclaunch ."