X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.gitlab-ci.yml;h=64c8184767deff4a9082edf72f2f7955bb7b730d;hb=3263ce50538a9bca10a591eec1da6a32caed7fb5;hp=2f69eb1d2e3cf1021407731882b6ed0b59b81bb8;hpb=2284f202070aa2e49156cc52b3b1596a7d5aadec;p=github%2FChocobozzz%2FPeerTube.git diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2f69eb1d2..64c818476 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,13 +3,14 @@ image: chocobozzz/peertube-ci:10 stages: - build-and-lint - test - - nightly + - 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 +#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 @@ -84,8 +85,23 @@ cache: # 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: nightly + stage: docker-nightly only: - schedules script: @@ -98,3 +114,34 @@ build-nightly: - 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: + - 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