From e62591895d31a9962c1cae7947d95bbbf9a9a564 Mon Sep 17 00:00:00 2001 From: Akolzin Dmitry Date: Mon, 18 May 2020 16:34:25 +0300 Subject: [PATCH] update travis config (#32) --- .travis.yml | 62 ++++++++++++++++++++++++++++++++++++++++++----------- Makefile | 5 +---- 2 files changed, 50 insertions(+), 17 deletions(-) diff --git a/.travis.yml b/.travis.yml index f1f6753..d4a9120 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,8 +17,38 @@ env: stages: - test + - deploy + +before_install: + - export LAST_TAG=`git describe --abbrev=0 --tags` + - export CURRENT_VERSION=v`cat VERSION` + +before_script: + - bash bin/install.sh + +script: make ci jobs: + allow_failures: + - if: fork = true + env: BRANCH=2.0.2 + - if: fork = true + env: BRANCH=2.0.4 + - if: fork = true + env: BRANCH=2.0.5 + - if: fork = true + env: BRANCH=2.0.6 + - if: fork = true + env: BRANCH=2.0.7 + - if: fork = true + env: BRANCH=2.0.8 + - if: fork = true + env: BRANCH=2.0.9 + - if: fork = true + env: BRANCH=2.0.10 + - if: fork = true + env: BRANCH=2.0.11 + include: - php: 7.0 env: BRANCH=2.0.2 @@ -215,16 +245,22 @@ jobs: - php: 7.3 env: BRANCH=2.3.4 -before_script: - - bash bin/install.sh - -script: make ci - -# deploy: -# skip_cleanup: true -# provider: script -# script: make -# on: -# php: 7.2 -# branch: master -# condition: "$DEPLOY = true" + - stage: deploy + before_script: skip + script: make build_archive + before_deploy: + - export VERSION=`cat VERSION` + - export ARCHIVE_NAME=/tmp/retailcrm-retailcrm-$VERSION.zip + - git config --local user.name "retailCRM" + - git config --local user.email "support@retailcrm.ru" + - export TRAVIS_TAG=v$VERSION + - git tag $TRAVIS_TAG + deploy: + provider: releases + token: $GITHUB_OAUTH_TOKEN + cleanup: false + file: $ARCHIVE_NAME + on: + condition: "$LAST_TAG != $CURRENT_VERSION" + if: branch = master AND type = push AND fork = false + after_deploy: make delete_archive diff --git a/Makefile b/Makefile index c4acbc2..f0507f4 100644 --- a/Makefile +++ b/Makefile @@ -3,14 +3,11 @@ VERSION = `cat $(FILE)` ARCHIVE_NAME = '/tmp/retailcrm-retailcrm-'$(VERSION)'.zip' MAGE_ROOT = $(TRAVIS_BUILD_DIR)/../magento2 -all: build_archive send_to_ftp delete_archive +.PHONY: build_archive delete_archive build_archive: cd src; zip -r $(ARCHIVE_NAME) ./* -send_to_ftp: - curl -T $(ARCHIVE_NAME) -u $(FTP_USER):$(FTP_PASSWORD) ftp://$(FTP_HOST) - delete_archive: rm -f $(ARCHIVE_NAME)