diff options
author | pacien | 2018-10-10 03:18:10 +0200 |
---|---|---|
committer | pacien | 2018-10-10 03:18:10 +0200 |
commit | 93c67ee2bbd7fef5a827082de533feeea3537aa5 (patch) | |
tree | 8e00c121a69ebe52b630ea0dbf174e2ba653ef1d /.gitlab-ci.yml | |
parent | fe0d68c0db1e5737dacf104f3d35d69f1be1d06d (diff) | |
download | jacoco-viewer-93c67ee2bbd7fef5a827082de533feeea3537aa5.tar.gz |
Combine CI stages
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ba99f56..18e4d37 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml | |||
@@ -5,17 +5,13 @@ cache: | |||
5 | paths: | 5 | paths: |
6 | - .yarn_cache | 6 | - .yarn_cache |
7 | 7 | ||
8 | stages: | ||
9 | - install | ||
10 | - build | ||
11 | |||
12 | install: | 8 | install: |
13 | stage: install | ||
14 | script: | 9 | script: |
15 | - yarn install --cache-folder .yarn_cache | 10 | - yarn install --cache-folder .yarn_cache |
16 | 11 | ||
17 | build: | 12 | build: |
18 | stage: build | 13 | dependencies: |
14 | - install | ||
19 | script: | 15 | script: |
20 | - yarn build | 16 | - yarn build |
21 | 17 | ||