Attempt
This commit is contained in:
parent
270eab46f6
commit
7db4e2cbfa
|
@ -1,39 +1,45 @@
|
|||
|
||||
test_api:
|
||||
before_script:
|
||||
- docker-compose -f api/test.yml build
|
||||
script:
|
||||
- docker-compose -f api/test.yml run test
|
||||
after_script:
|
||||
- docker-compose -f api/test.yml run test rm -rf funkwhale_api/media/
|
||||
|
||||
tags:
|
||||
- dind
|
||||
|
||||
build_front:
|
||||
image: node:6-alpine
|
||||
before_script:
|
||||
- cd front
|
||||
|
||||
script:
|
||||
- npm install
|
||||
- npm run build
|
||||
cache:
|
||||
key: "$CI_COMMIT_REF_NAME"
|
||||
paths:
|
||||
- front/node_modules
|
||||
artifacts:
|
||||
name: "front_${CI_COMMIT_REF_NAME}"
|
||||
paths:
|
||||
- front/dist/
|
||||
only:
|
||||
- master
|
||||
- develop
|
||||
tags:
|
||||
- docker
|
||||
stages:
|
||||
- test
|
||||
# - build
|
||||
#
|
||||
# test_api:
|
||||
# stage: test
|
||||
# before_script:
|
||||
# - docker-compose -f api/test.yml build
|
||||
# script:
|
||||
# - docker-compose -f api/test.yml run test
|
||||
# after_script:
|
||||
# - docker-compose -f api/test.yml run test rm -rf funkwhale_api/media/
|
||||
#
|
||||
# tags:
|
||||
# - dind
|
||||
#
|
||||
# build_front:
|
||||
# stage: build
|
||||
# image: node:6-alpine
|
||||
# before_script:
|
||||
# - cd front
|
||||
#
|
||||
# script:
|
||||
# - npm install
|
||||
# - npm run build
|
||||
# cache:
|
||||
# key: "$CI_COMMIT_REF_NAME"
|
||||
# paths:
|
||||
# - front/node_modules
|
||||
# artifacts:
|
||||
# name: "front_${CI_COMMIT_REF_NAME}"
|
||||
# paths:
|
||||
# - front/dist/
|
||||
# only:
|
||||
# - master
|
||||
# - develop
|
||||
# tags:
|
||||
# - docker
|
||||
|
||||
|
||||
pages:
|
||||
stage: test
|
||||
image: alpine
|
||||
before_script:
|
||||
- cd docs
|
||||
|
@ -42,7 +48,7 @@ pages:
|
|||
- pip install sphinx
|
||||
- apk --no-cache add make
|
||||
- make html
|
||||
- mv _build/html/ public/
|
||||
- mv _build/html/ ../public
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
|
|
Loading…
Reference in New Issue