소스 검색

gitlab: try to run parallel steps

Nathalie Furmento 4 년 전
부모
커밋
b298d77c4c
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      .gitlab-ci.yml

+ 2 - 3
.gitlab-ci.yml

@@ -17,7 +17,6 @@
 stages:
   - build
   - deploy
-  - simgrid
 
 build:
   stage: build
@@ -31,7 +30,7 @@ build:
       when: never  # Prevent pipeline run for push event
     - when: always # Run pipeline for all other cases
 
-deploy:
+check:
   stage: deploy
   script:
     - ./contrib/gitlab/deploy.sh
@@ -41,7 +40,7 @@ deploy:
     - when: always # Run pipeline for all other cases
 
 simgrid:
-  stage: simgrid
+  stage: deploy
   script:
     - ./contrib/gitlab/simgrid.sh
   rules: