mirror of https://github.com/wallabag/wallabag.git
First draft for Makefile
This commit is contained in:
parent
5112b3556b
commit
d8507addbb
|
@ -0,0 +1,47 @@
|
|||
TMP_FOLDER=/tmp
|
||||
RELEASE_FOLDER=wllbg-release
|
||||
|
||||
SSH_USER=framasoft_bag
|
||||
SSH_HOST=78.46.248.87
|
||||
SSH_PATH=/var/www/framabag.org/web
|
||||
|
||||
help:
|
||||
@echo 'Makefile for wallabag '
|
||||
@echo ' '
|
||||
@echo 'Usage: '
|
||||
@echo ' make install install latest stable wallabag version '
|
||||
@echo ' make update update to the latest stable wallabag version'
|
||||
@echo ' make build run grunt '
|
||||
@echo ' make test execute wallabag testsuite '
|
||||
@echo ' make release produce a wallabag release '
|
||||
@echo ' make travis make things for travis '
|
||||
@echo ' '
|
||||
|
||||
install:
|
||||
TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
|
||||
@git checkout $(TAG)
|
||||
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
||||
php bin/console wallabag:install --env=prod
|
||||
|
||||
update:
|
||||
|
||||
build:
|
||||
grunt
|
||||
|
||||
test:
|
||||
ant prepare && phpunit -v
|
||||
|
||||
release:
|
||||
version=$(VERSION)
|
||||
rm -rf $(TMP_FOLDER)/$(RELEASE_FOLDER)
|
||||
mkdir $(TMP_FOLDER)/$(RELEASE_FOLDER)
|
||||
@git clone git@github.com:wallabag/wallabag.git -b $(VERSION) $(TMP_FOLDER)/$(RELEASE_FOLDER)/$(VERSION)
|
||||
cd $(TMP_FOLDER)/$(RELEASE_FOLDER)/$(VERSION) && SYMFONY_ENV=prod composer up -n --no-dev
|
||||
cd $(TMP_FOLDER)/$(RELEASE_FOLDER)/$(VERSION) && php bin/console wallabag:install --env=prod
|
||||
cd $(TMP_FOLDER)/$(RELEASE_FOLDER) && tar czf wallabag-$(VERSION).tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" $(VERSION)
|
||||
@echo "MD5 checksum of the package for wallabag $(VERSION)"
|
||||
@md5 $(TMP_FOLDER)/$(RELEASE_FOLDER)/wallabag-$(VERSION).tar.gz
|
||||
scp $(TMP_FOLDER)/$(RELEASE_FOLDER)/wallabag-$(VERSION).tar.gz $(SSH_USER)@$(SSH_HOST):$(SSH_PATH)
|
||||
rm -rf $(TMP_FOLDER)/$(RELEASE_FOLDER)
|
||||
|
||||
travis:
|
|
@ -1,6 +0,0 @@
|
|||
#! /usr/bin/env bash
|
||||
|
||||
TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
|
||||
git checkout $TAG
|
||||
SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
|
||||
php bin/console wallabag:install --env=prod
|
Loading…
Reference in New Issue