aboutsummaryrefslogtreecommitdiffhomepage
path: root/.gitlab-ci.yml
blob: 8deb0769484931b23f8acf6bd959f666c68a6821 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
image: chocobozzz/peertube-ci:10

stages:
  - build-and-lint
  - test
  - clients
  - docker-nightly
  - external-plugins

#before_script:
#  - 'sed -i -z "s/database:\n  hostname: ''localhost''/database:\n  hostname: ''postgres''/" config/test.yaml'
#  - 'sed -i -z "s/redis:\n  hostname: ''localhost''/redis:\n  hostname: ''redis''/" config/test.yaml'
#  - if [[ $CI_JOB_STAGE == "test" ]]; then psql -c "create user peertube with password 'peertube';"; fi
#  - NOCLIENT=1 yarn install --pure-lockfile --cache-folder .yarn-cache

cache:
  key: yarn
  paths:
    - .yarn-cache
    - cached-fixtures

###
## Jobs templates
#
#.build-and-lint: &build-and-lint
#  stage: build-and-lint
#
#.tests: &tests
#  stage: test
#  dependencies:
#    - build-server
#  services:
#    - name: postgres:9.6
#      alias: postgres
#    - name: redis:latest
#      alias: redis
#  variables:
#    PGHOST: postgres
#    PGUSER: postgres
#    REDIS_HOST: redis
#  artifacts:
#    expire_in: 1 day
#    paths:
#      - test*/logs
#    when: always
#
####
### Build and lint
##
#build-server:
#  <<: *build-and-lint
#  artifacts:
#    expire_in: 5h
#    paths:
#      - dist/
#  script:
#    - npm run build:server
#
#lint:
#  <<: *build-and-lint
#  script:
#    - yarn install --pure-lockfile --cache-folder .yarn-cache
#    - npm run ci -- "lint"
#
####
### Tests
#
#test-misc:
#  <<: *tests
#  script:
#    - yarn install --pure-lockfile --cache-folder .yarn-cache
#    - npm run ci -- "misc"
#
#test-cli:
#  <<: *tests
#  retry:
#    max: 1
#  script:
#    - npm run ci -- "cli"
#
#api:
#  <<: *tests
#  parallel: 4
#  retry:
#    max: 1
#  script:
#    - NODE_PENDING_JOB_WAIT=1000 npm run ci -- api-$CI_NODE_INDEX

build-openapi-clients:
  stage: clients
  only:
    refs:
      - master
      - schedules
    changes:
      - support/doc/api/openapi.yaml
  script:
    - apt-get update -qq
    - apt-get -yqqq install openjdk-8-jre
    - yarn install --pure-lockfile
    - scripts/openapi-peertube-version.sh
    - scripts/openapi-clients.sh

build-nightly:
  stage: docker-nightly
  only:
    - schedules
  script:
    - yarn install --pure-lockfile --cache-folder .yarn-cache
    - npm run nightly
    - mkdir "${HOME}/.ssh"
    - chmod 700 "${HOME}/.ssh"
    - if [ ! -z ${DEPLOYEMENT_KNOWN_HOSTS+x} ]; then echo -e "${DEPLOYEMENT_KNOWN_HOSTS}" > ${HOME}/.ssh/known_hosts; fi
    - eval `ssh-agent -s`
    - if [ ! -z ${DEPLOYEMENT_KEY+x} ]; then ssh-add <(echo "${DEPLOYEMENT_KEY}"); fi
    - if [ ! -z ${DEPLOYEMENT_KEY+x} ]; then scp ./peertube-nightly-* ${DEPLOYEMENT_USER}@${DEPLOYEMENT_HOST}:../../web/nightly; fi

.docker: &docker
  stage: docker-nightly
  cache: {}
  image:
    name: gcr.io/kaniko-project/executor:debug
    entrypoint: [""]
  before_script:
    - mkdir -p /kaniko/.docker
    - echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$CI_REGISTRY_AUTH\",\"email\":\"$CI_REGISTRY_EMAIL\"}}}" > /kaniko/.docker/config.json
  script:
    - /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/support/docker/production/Dockerfile.buster --destination $DOCKER_IMAGE_NAME

build-docker-develop:
  <<: *docker
  only:
    - schedules
  variables:
    DOCKER_IMAGE_NAME: chocobozzz/peertube:develop-buster

build-docker-tag:
  <<: *docker
  only:
    - tags
  variables:
    DOCKER_IMAGE_NAME: chocobozzz/peertube:$CI_COMMIT_TAG-buster

build-docker-master:
  <<: *docker
  only:
    - master
  variables:
    DOCKER_IMAGE_NAME: chocobozzz/peertube:production-buster

test-external-plugins:
  stage: external-plugins
  only:
    - schedules
  services:
    - name: postgres:9.6
      alias: postgres
    - name: redis:latest
      alias: redis
    - name: rroemhild/test-openldap
      alias: ldap
  variables:
    POSTGRES_USER: peertube
    POSTGRES_HOST_AUTH_METHOD: trust
    REDIS_HOST: redis
  artifacts:
   expire_in: 1 day
   paths:
     - test*/logs
   when: always
  before_script:
    - 'sed -i -z "s/database:\n  hostname: ''localhost''/database:\n  hostname: ''postgres''/" config/test.yaml'
    - 'sed -i -z "s/redis:\n  hostname: ''localhost''/redis:\n  hostname: ''redis''/" config/test.yaml'
    - NOCLIENT=1 yarn install --pure-lockfile --cache-folder .yarn-cache
  script:
    - PGHOST=postgres PGUSER=peertube npm run ci -- "external-plugins"