Should work now
This commit is contained in:
parent
7db4e2cbfa
commit
5d7b1cb892
|
@ -1,41 +1,41 @@
|
||||||
stages:
|
stages:
|
||||||
- test
|
- test
|
||||||
# - build
|
- build
|
||||||
#
|
|
||||||
# test_api:
|
test_api:
|
||||||
# stage: test
|
stage: test
|
||||||
# before_script:
|
before_script:
|
||||||
# - docker-compose -f api/test.yml build
|
- docker-compose -f api/test.yml build
|
||||||
# script:
|
script:
|
||||||
# - docker-compose -f api/test.yml run test
|
- docker-compose -f api/test.yml run test
|
||||||
# after_script:
|
after_script:
|
||||||
# - docker-compose -f api/test.yml run test rm -rf funkwhale_api/media/
|
- docker-compose -f api/test.yml run test rm -rf funkwhale_api/media/
|
||||||
#
|
|
||||||
# tags:
|
tags:
|
||||||
# - dind
|
- dind
|
||||||
#
|
|
||||||
# build_front:
|
build_front:
|
||||||
# stage: build
|
stage: build
|
||||||
# image: node:6-alpine
|
image: node:6-alpine
|
||||||
# before_script:
|
before_script:
|
||||||
# - cd front
|
- cd front
|
||||||
#
|
|
||||||
# script:
|
script:
|
||||||
# - npm install
|
- npm install
|
||||||
# - npm run build
|
- npm run build
|
||||||
# cache:
|
cache:
|
||||||
# key: "$CI_COMMIT_REF_NAME"
|
key: "$CI_COMMIT_REF_NAME"
|
||||||
# paths:
|
paths:
|
||||||
# - front/node_modules
|
- front/node_modules
|
||||||
# artifacts:
|
artifacts:
|
||||||
# name: "front_${CI_COMMIT_REF_NAME}"
|
name: "front_${CI_COMMIT_REF_NAME}"
|
||||||
# paths:
|
paths:
|
||||||
# - front/dist/
|
- front/dist/
|
||||||
# only:
|
only:
|
||||||
# - master
|
- master
|
||||||
# - develop
|
- develop
|
||||||
# tags:
|
tags:
|
||||||
# - docker
|
- docker
|
||||||
|
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
|
|
Loading…
Reference in New Issue