diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-10-09 21:50:15 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-10-09 21:50:15 +0200 |
commit | 4e7863c6aa0010c22e471a84859217e1ca8227b8 (patch) | |
tree | 44b864002cc5240adce343e6dee22fbffb7a672e | |
parent | 26490a8794e762a77bb0439790db641a222fb0ef (diff) | |
download | wallabag-4e7863c6aa0010c22e471a84859217e1ca8227b8.tar.gz wallabag-4e7863c6aa0010c22e471a84859217e1ca8227b8.tar.zst wallabag-4e7863c6aa0010c22e471a84859217e1ca8227b8.zip |
Created scripts folder to store update/install/release process
-rwxr-xr-x | Makefile | 29 | ||||
-rw-r--r-- | scripts/install.sh | 8 | ||||
-rw-r--r-- | scripts/release.sh | 17 | ||||
-rw-r--r-- | scripts/update.sh | 11 |
4 files changed, 39 insertions, 26 deletions
@@ -1,10 +1,6 @@ | |||
1 | TMP_FOLDER=/tmp | 1 | TMP_FOLDER=/tmp |
2 | RELEASE_FOLDER=wllbg-release | 2 | RELEASE_FOLDER=wllbg-release |
3 | 3 | ||
4 | SSH_USER=framasoft_bag | ||
5 | SSH_HOST=78.46.248.87 | ||
6 | SSH_PATH=/var/www/framabag.org/web | ||
7 | |||
8 | ENV=prod | 4 | ENV=prod |
9 | 5 | ||
10 | help: ## Display this help menu | 6 | help: ## Display this help menu |
@@ -14,19 +10,10 @@ clean: ## Clear the application cache | |||
14 | @rm -rf var/cache/* | 10 | @rm -rf var/cache/* |
15 | 11 | ||
16 | install: ## Install wallabag with the latest version | 12 | install: ## Install wallabag with the latest version |
17 | TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) | 13 | @sh scripts/install.sh $(ENV) |
18 | @git checkout $(TAG) | ||
19 | @SYMFONY_ENV=$(ENV) composer install --no-dev -o --prefer-dist | ||
20 | @php bin/console wallabag:install --env=$(ENV) | ||
21 | 14 | ||
22 | update: ## Update the wallabag installation to the latest version | 15 | update: ## Update the wallabag installation to the latest version |
23 | @rm -rf var/cache/* | 16 | @sh scripts/update.sh $(ENV) |
24 | @git fetch origin | ||
25 | @git fetch --tags | ||
26 | TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) | ||
27 | @git checkout $(TAG) | ||
28 | @SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist | ||
29 | @php bin/console cache:clear --env=prod | ||
30 | 17 | ||
31 | run: ## Run the wallabag server | 18 | run: ## Run the wallabag server |
32 | php bin/console server:run --env=$(ENV) | 19 | php bin/console server:run --env=$(ENV) |
@@ -41,17 +28,7 @@ release: ## Create a package. Need a VERSION parameter (eg: `make release VERSIO | |||
41 | ifndef VERSION | 28 | ifndef VERSION |
42 | $(error VERSION is not set) | 29 | $(error VERSION is not set) |
43 | endif | 30 | endif |
44 | version=$(VERSION) | 31 | @sh scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV) |
45 | @rm -rf $(TMP_FOLDER)/$(RELEASE_FOLDER) | ||
46 | @mkdir $(TMP_FOLDER)/$(RELEASE_FOLDER) | ||
47 | @git clone git@github.com:wallabag/wallabag.git -b $(VERSION) $(TMP_FOLDER)/$(RELEASE_FOLDER)/$(VERSION) | ||
48 | @cd $(TMP_FOLDER)/$(RELEASE_FOLDER)/$(VERSION) && SYMFONY_ENV=$(ENV) composer up -n --no-dev | ||
49 | @cd $(TMP_FOLDER)/$(RELEASE_FOLDER)/$(VERSION) && php bin/console wallabag:install --env=$(ENV) | ||
50 | @cd $(TMP_FOLDER)/$(RELEASE_FOLDER) && tar czf wallabag-$(VERSION).tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" $(VERSION) | ||
51 | @echo "MD5 checksum of the package for wallabag $(VERSION)" | ||
52 | @md5 $(TMP_FOLDER)/$(RELEASE_FOLDER)/wallabag-$(VERSION).tar.gz | ||
53 | @scp $(TMP_FOLDER)/$(RELEASE_FOLDER)/wallabag-$(VERSION).tar.gz $(SSH_USER)@$(SSH_HOST):$(SSH_PATH) | ||
54 | @rm -rf $(TMP_FOLDER)/$(RELEASE_FOLDER) | ||
55 | 32 | ||
56 | travis: ## Make some stuff for Travis-CI | 33 | travis: ## Make some stuff for Travis-CI |
57 | 34 | ||
diff --git a/scripts/install.sh b/scripts/install.sh new file mode 100644 index 00000000..755aac1c --- /dev/null +++ b/scripts/install.sh | |||
@@ -0,0 +1,8 @@ | |||
1 | #! /usr/bin/env bash | ||
2 | |||
3 | ENV=$1 | ||
4 | TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) | ||
5 | |||
6 | git checkout $TAG | ||
7 | SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist | ||
8 | php bin/console wallabag:install --env=$ENV | ||
diff --git a/scripts/release.sh b/scripts/release.sh new file mode 100644 index 00000000..3d096430 --- /dev/null +++ b/scripts/release.sh | |||
@@ -0,0 +1,17 @@ | |||
1 | #! /usr/bin/env bash | ||
2 | |||
3 | VERSION=$1 | ||
4 | TMP_FOLDER=$2 | ||
5 | RELEASE_FOLDER=$3 | ||
6 | ENV=$4 | ||
7 | |||
8 | rm -rf $TMP_FOLDER/$RELEASE_FOLDER | ||
9 | mkdir $TMP_FOLDER/$RELEASE_FOLDER | ||
10 | git clone git@github.com:wallabag/wallabag.git -b $VERSION $TMP_FOLDER/$RELEASE_FOLDER/$VERSION | ||
11 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && SYMFONY_ENV=$ENV composer up -n --no-dev | ||
12 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console wallabag:install --env=$ENV | ||
13 | cd $TMP_FOLDER/$RELEASE_FOLDER && tar czf wallabag-$VERSION.tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" $VERSION | ||
14 | echo "MD5 checksum of the package for wallabag $VERSION" | ||
15 | md5 $TMP_FOLDER/$RELEASE_FOLDER/wallabag-$VERSION.tar.gz | ||
16 | scp $TMP_FOLDER/$RELEASE_FOLDER/wallabag-$VERSION.tar.gz framasoft_bag@78.46.248.87:/var/www/framabag.org/web | ||
17 | rm -rf $TMP_FOLDER/$RELEASE_FOLDER | ||
diff --git a/scripts/update.sh b/scripts/update.sh new file mode 100644 index 00000000..167e84e1 --- /dev/null +++ b/scripts/update.sh | |||
@@ -0,0 +1,11 @@ | |||
1 | #! /usr/bin/env bash | ||
2 | |||
3 | ENV=$1 | ||
4 | TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) | ||
5 | |||
6 | rm -rf var/cache/* | ||
7 | git fetch origin | ||
8 | git fetch --tags | ||
9 | git checkout $TAG | ||
10 | SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist | ||
11 | php bin/console cache:clear --env=$ENV | ||