diff options
author | Average Dude <loveisgrief@tuta.io> | 2020-02-14 14:14:14 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-02-14 14:14:14 +0100 |
commit | 002df3813d13c5accd36d7943af2b17376a6d1ac (patch) | |
tree | 58729dae12b53c0f368212ce334826b8093c6f4a /.gitlab-ci.yml | |
parent | 68ca61941e3a7ca4c018566d2c496afd27dbd76d (diff) | |
download | PeerTube-002df3813d13c5accd36d7943af2b17376a6d1ac.tar.gz PeerTube-002df3813d13c5accd36d7943af2b17376a6d1ac.tar.zst PeerTube-002df3813d13c5accd36d7943af2b17376a6d1ac.zip |
OpenAPI clients generation
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e9c1898f3..0b7332e0b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml | |||
@@ -4,6 +4,7 @@ stages: | |||
4 | - build-and-lint | 4 | - build-and-lint |
5 | - test | 5 | - test |
6 | - docker-nightly | 6 | - docker-nightly |
7 | - clients | ||
7 | 8 | ||
8 | #before_script: | 9 | #before_script: |
9 | # - 'sed -i -z "s/database:\n hostname: ''localhost''/database:\n hostname: ''postgres''/" config/test.yaml' | 10 | # - 'sed -i -z "s/database:\n hostname: ''localhost''/database:\n hostname: ''postgres''/" config/test.yaml' |
@@ -84,6 +85,21 @@ cache: | |||
84 | # script: | 85 | # script: |
85 | # - NODE_PENDING_JOB_WAIT=1000 npm run ci -- api-$CI_NODE_INDEX | 86 | # - NODE_PENDING_JOB_WAIT=1000 npm run ci -- api-$CI_NODE_INDEX |
86 | 87 | ||
88 | build-openapi-clients: | ||
89 | stage: clients | ||
90 | only: | ||
91 | refs: | ||
92 | - master | ||
93 | - schedules | ||
94 | changes: | ||
95 | - support/doc/api/openapi.yaml | ||
96 | script: | ||
97 | - apt-get update -qq | ||
98 | - apt-get -yqqq install openjdk-8-jre | ||
99 | - yarn install --pure-lockfile | ||
100 | - scripts/openapi-peertube-version.sh | ||
101 | - scripts/openapi-clients.sh | ||
102 | |||
87 | build-nightly: | 103 | build-nightly: |
88 | stage: docker-nightly | 104 | stage: docker-nightly |
89 | only: | 105 | only: |