X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.gitlab-ci.yml;h=358257209792a6f379ae56f76d02c0c4aeb62f4e;hb=7673c1f6a4f7d672c68b53904b391b6c87bd88f7;hp=e9c1898f3245224a0efcaf8628268e4317928716;hpb=c82bf36a3f61fe051a2ead506a6f7b90d083bb32;p=github%2FChocobozzz%2FPeerTube.git diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e9c1898f3..358257209 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,88 +1,29 @@ image: chocobozzz/peertube-ci:10 stages: - - build-and-lint - - test + - clients - docker-nightly -#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 @@ -105,6 +46,7 @@ build-nightly: 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