mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 05:06:07 +03:00
Makefile, edit travis.yml
This commit is contained in:
parent
a9c8a96101
commit
26a6a0731c
@ -5,7 +5,6 @@ sudo: false
|
|||||||
php:
|
php:
|
||||||
- 7.0
|
- 7.0
|
||||||
- 7.1
|
- 7.1
|
||||||
- 7.2
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
@ -38,6 +37,6 @@ deploy:
|
|||||||
provider: script
|
provider: script
|
||||||
script: make
|
script: make
|
||||||
on:
|
on:
|
||||||
php: 7.2
|
php: 7.1
|
||||||
branch: master
|
branch: master
|
||||||
condition: "$DEPLOY = true"
|
condition: "$DEPLOY = true"
|
14
Makefile
Normal file
14
Makefile
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
FILE = $(TRAVIS_BUILD_DIR)/VERSION
|
||||||
|
VERSION = `cat $(FILE)`
|
||||||
|
ARCHIVE_NAME = '/tmp/retailcrm-'$(VERSION)'.zip'
|
||||||
|
|
||||||
|
all: build_archive send_to_ftp delete_archive
|
||||||
|
|
||||||
|
build_archive:
|
||||||
|
zip -r $(ARCHIVE_NAME) ./src/*
|
||||||
|
|
||||||
|
send_to_ftp:
|
||||||
|
curl -T $(ARCHIVE_NAME) -u $(FTP_USER):$(FTP_PASSWORD) ftp://$(FTP_HOST)
|
||||||
|
|
||||||
|
delete_archive:
|
||||||
|
rm -f $(ARCHIVE_NAME)
|
Loading…
Reference in New Issue
Block a user