From c1e34ff9f5e7bd61901c15ffc8d8665ab94e7459 Mon Sep 17 00:00:00 2001 From: Erwan Jahier <erwan.jahier@univ-grenoble-alpes.fr> Date: Wed, 4 Nov 2020 13:53:44 +0100 Subject: [PATCH] simca: fix a typo and make sure gitlab CI catch the in the future! --- .gitlab-ci.yml | 6 +----- tools/simca/nonreg_test_campaign.ml | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4eb8f2c0..4dba2611 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,11 +22,7 @@ simca: stage: release script: - cd tools/simca - - make - - make cmxs - - make log - - make pdf - allow_failure: true + - make && make cmxs && make log && make pdf artifacts: paths: - tools/simca diff --git a/tools/simca/nonreg_test_campaign.ml b/tools/simca/nonreg_test_campaign.ml index 7d030796..a8418594 100644 --- a/tools/simca/nonreg_test_campaign.ml +++ b/tools/simca/nonreg_test_campaign.ml @@ -17,7 +17,7 @@ let rings = List.init 5 (fun n -> Ring (100*(n+1))) (* [100; 200; ...; 500] *) let er = List.init 5 (fun n -> ER (20*(n+1), 0.4)) (* [20; 40; ...; 100] *) let networks = (cliques@rings@er) -let gen_make_rules () = gen_makefile "Makefile.expe-rules" daemons algos networks +let gen_make_rules () = gen_makefile "Makefile.expe-rules" daemons algos networks;; #use "parseLog.ml";; let gen_pdf () = -- GitLab