diff options
-rw-r--r-- | .gitlab-ci.yml | 38 |
1 files changed, 31 insertions, 7 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2f69eb1d2..401a5c960 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml | |||
@@ -3,13 +3,13 @@ image: chocobozzz/peertube-ci:10 | |||
3 | stages: | 3 | stages: |
4 | - build-and-lint | 4 | - build-and-lint |
5 | - test | 5 | - test |
6 | - nightly | 6 | - docker-nightly |
7 | 7 | ||
8 | before_script: | 8 | #before_script: |
9 | - 'sed -i -z "s/database:\n hostname: ''localhost''/database:\n hostname: ''postgres''/" config/test.yaml' | 9 | # - 'sed -i -z "s/database:\n hostname: ''localhost''/database:\n hostname: ''postgres''/" config/test.yaml' |
10 | - 'sed -i -z "s/redis:\n hostname: ''localhost''/redis:\n hostname: ''redis''/" config/test.yaml' | 10 | # - 'sed -i -z "s/redis:\n hostname: ''localhost''/redis:\n hostname: ''redis''/" config/test.yaml' |
11 | - if [[ $CI_JOB_STAGE == "test" ]]; then psql -c "create user peertube with password 'peertube';"; fi | 11 | # - if [[ $CI_JOB_STAGE == "test" ]]; then psql -c "create user peertube with password 'peertube';"; fi |
12 | - NOCLIENT=1 yarn install --pure-lockfile --cache-folder .yarn-cache | 12 | # - NOCLIENT=1 yarn install --pure-lockfile --cache-folder .yarn-cache |
13 | 13 | ||
14 | cache: | 14 | cache: |
15 | key: yarn | 15 | key: yarn |
@@ -85,7 +85,7 @@ cache: | |||
85 | # - NODE_PENDING_JOB_WAIT=1000 npm run ci -- api-$CI_NODE_INDEX | 85 | # - NODE_PENDING_JOB_WAIT=1000 npm run ci -- api-$CI_NODE_INDEX |
86 | 86 | ||
87 | build-nightly: | 87 | build-nightly: |
88 | stage: nightly | 88 | stage: docker-nightly |
89 | only: | 89 | only: |
90 | - schedules | 90 | - schedules |
91 | script: | 91 | script: |
@@ -98,3 +98,27 @@ build-nightly: | |||
98 | - if [ ! -z ${DEPLOYEMENT_KEY+x} ]; then ssh-add <(echo "${DEPLOYEMENT_KEY}"); fi | 98 | - if [ ! -z ${DEPLOYEMENT_KEY+x} ]; then ssh-add <(echo "${DEPLOYEMENT_KEY}"); fi |
99 | - if [ ! -z ${DEPLOYEMENT_KEY+x} ]; then scp ./peertube-nightly-* ${DEPLOYEMENT_USER}@${DEPLOYEMENT_HOST}:../../web/nightly; fi | 99 | - if [ ! -z ${DEPLOYEMENT_KEY+x} ]; then scp ./peertube-nightly-* ${DEPLOYEMENT_USER}@${DEPLOYEMENT_HOST}:../../web/nightly; fi |
100 | 100 | ||
101 | .docker: &docker | ||
102 | stage: docker-nightly | ||
103 | image: | ||
104 | name: gcr.io/kaniko-project/executor:debug | ||
105 | entrypoint: [""] | ||
106 | before_script: | ||
107 | - echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$CI_REGISTRY_AUTH\",\"email\":\"$CI_REGISTRY_EMAIL\"}}}" > /kaniko/.docker/config.json | ||
108 | script: | ||
109 | - /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/support/docker/production/Dockerfile.stretch --destination $DOCKER_IMAGE_NAME | ||
110 | |||
111 | build-docker-develop: | ||
112 | <<: *docker | ||
113 | only: | ||
114 | - schedules | ||
115 | - develop | ||
116 | variables: | ||
117 | DOCKER_IMAGE_NAME: chocobozzz/peertube:develop-stretch | ||
118 | |||
119 | build-docker-tag: | ||
120 | <<: *docker | ||
121 | only: | ||
122 | - tags | ||
123 | variables: | ||
124 | DOCKER_IMAGE_NAME: chocobozzz/peertube:$CI_COMMIT_TAG-stretch | ||