2016-08-20 10 views

答えて

1

はジャスト追加 - apt-getを そして OFC & &は-yをインストールapt-getを更新nodejs - バンドルするgitlab-cl.yaml内部

をインストール

image: ruby:2.3 

test: 
    stage: test 
    script: 
    - gem install jekyll 
    - bundle install 
    - apt-get update && apt-get install -y nodejs 
    - bundle exec jekyll -d test/ 
    artifacts: 
    paths: 
    - test 
    except: 
    - master 

pages: 
    stage: deploy 
    script: 
    - gem install jekyll 
    - bundle install 
    - apt-get update && apt-get install -y nodejs 
    - bundle exec jekyll -d public/ 
    artifacts: 
    paths: 
    - public 
    only: 
    - master 
関連する問題