소스 검색

Merge branch 'ruby23' into 'master'

Ruby 2.3



See merge request !2

Achilleas Pipinellis 8 년 전
부모
커밋
e120b00841
1개의 변경된 파일14개의 추가작업 그리고 2개의 파일을 삭제
  1. 14 2
      .gitlab-ci.yml

+ 14 - 2
.gitlab-ci.yml

@@ -1,6 +1,18 @@
+image: ruby:2.3
+
+test:
+  stage: test
+  script:
+  - gem install jekyll
+  - jekyll build -d test
+  artifacts:
+    paths:
+    - test
+  except:
+  - master
+
 pages:
   stage: deploy
-  image: ruby:2.1
   script:
   - gem install jekyll
   - jekyll build -d public
@@ -8,4 +20,4 @@ pages:
     paths:
     - public
   only:
-  - master
+  - master