1
0
hugo/content/blog/2016-06-11-gitlab-ci.md

35 lines
795 B
Markdown
Raw Normal View History

2024-04-23 13:21:26 +00:00
+++
date = "2016-06-11"
tags = ["none"]
title = "gitlab-ci"
slug = "gitlab-ci"
+++
`GitLab CI`を試してみているのですが、結構遅いです。
ただ、最終的には実行してくれる感じなので`Wercker`よりは良くなってくのかも。
あと、`Elm`のテンプレートが上手くビルドできなかった。`gulp build`で引っかかります。ローカルではOK。
[https://github.com/Gizra/elm-hedley](https://github.com/Gizra/elm-hedley)
```bash
image: node:latest
before_script:
- npm i -g elm@0.16.0 bower gulp
- elm-package install -y
- npm i
- bower install
pages:
script:
- npm i elm@0.16.0
- gulp build
artifacts:
paths:
- serve
```
[https://github.com/isRuslan/awesome-elm](https://github.com/isRuslan/awesome-elm)