]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Created scripts folder to store update/install/release process
authorNicolas Lœuillet <nicolas@loeuillet.org>
Sun, 9 Oct 2016 19:50:15 +0000 (21:50 +0200)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Sun, 9 Oct 2016 19:50:15 +0000 (21:50 +0200)
Makefile
scripts/install.sh [new file with mode: 0644]
scripts/release.sh [new file with mode: 0644]
scripts/update.sh [new file with mode: 0644]

index a4a06e3fa42c8a4af5484433b9234d849853114a..f7f6138dd593f843147f3d3a0ab72d6b6ad7170f 100755 (executable)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,6 @@
 TMP_FOLDER=/tmp
 RELEASE_FOLDER=wllbg-release
 
-SSH_USER=framasoft_bag
-SSH_HOST=78.46.248.87
-SSH_PATH=/var/www/framabag.org/web
-
 ENV=prod
 
 help: ## Display this help menu
@@ -14,19 +10,10 @@ clean: ## Clear the application cache
        @rm -rf var/cache/*
 
 install: ## Install wallabag with the latest version
-       TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
-       @git checkout $(TAG)
-       @SYMFONY_ENV=$(ENV) composer install --no-dev -o --prefer-dist
-       @php bin/console wallabag:install --env=$(ENV)
+       @sh scripts/install.sh $(ENV)
 
 update: ## Update the wallabag installation to the latest version
-       @rm -rf var/cache/*
-       @git fetch origin
-       @git fetch --tags
-       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 cache:clear --env=prod
+       @sh scripts/update.sh $(ENV)
 
 run: ## Run the wallabag server
        php bin/console server:run --env=$(ENV)
@@ -41,17 +28,7 @@ release: ## Create a package. Need a VERSION parameter (eg: `make release VERSIO
 ifndef VERSION
        $(error VERSION is not set)
 endif
-       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=$(ENV) composer up -n --no-dev
-       @cd $(TMP_FOLDER)/$(RELEASE_FOLDER)/$(VERSION) && php bin/console wallabag:install --env=$(ENV)
-       @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)
+       @sh scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV)
 
 travis: ## Make some stuff for Travis-CI
 
diff --git a/scripts/install.sh b/scripts/install.sh
new file mode 100644 (file)
index 0000000..755aac1
--- /dev/null
@@ -0,0 +1,8 @@
+#! /usr/bin/env bash
+
+ENV=$1
+TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
+
+git checkout $TAG
+SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
+php bin/console wallabag:install --env=$ENV
diff --git a/scripts/release.sh b/scripts/release.sh
new file mode 100644 (file)
index 0000000..3d09643
--- /dev/null
@@ -0,0 +1,17 @@
+#! /usr/bin/env bash
+
+VERSION=$1
+TMP_FOLDER=$2
+RELEASE_FOLDER=$3
+ENV=$4
+
+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=$ENV composer up -n --no-dev
+cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console wallabag:install --env=$ENV
+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 framasoft_bag@78.46.248.87:/var/www/framabag.org/web
+rm -rf $TMP_FOLDER/$RELEASE_FOLDER
diff --git a/scripts/update.sh b/scripts/update.sh
new file mode 100644 (file)
index 0000000..167e84e
--- /dev/null
@@ -0,0 +1,11 @@
+#! /usr/bin/env bash
+
+ENV=$1
+TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
+
+rm -rf var/cache/*
+git fetch origin
+git fetch --tags
+git checkout $TAG
+SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
+php bin/console cache:clear --env=$ENV