aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-10-09 21:50:15 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-10-09 21:50:15 +0200
commit4e7863c6aa0010c22e471a84859217e1ca8227b8 (patch)
tree44b864002cc5240adce343e6dee22fbffb7a672e /scripts
parent26490a8794e762a77bb0439790db641a222fb0ef (diff)
downloadwallabag-4e7863c6aa0010c22e471a84859217e1ca8227b8.tar.gz
wallabag-4e7863c6aa0010c22e471a84859217e1ca8227b8.tar.zst
wallabag-4e7863c6aa0010c22e471a84859217e1ca8227b8.zip
Created scripts folder to store update/install/release process
Diffstat (limited to 'scripts')
-rw-r--r--scripts/install.sh8
-rw-r--r--scripts/release.sh17
-rw-r--r--scripts/update.sh11
3 files changed, 36 insertions, 0 deletions
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
3ENV=$1
4TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
5
6git checkout $TAG
7SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
8php 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
3VERSION=$1
4TMP_FOLDER=$2
5RELEASE_FOLDER=$3
6ENV=$4
7
8rm -rf $TMP_FOLDER/$RELEASE_FOLDER
9mkdir $TMP_FOLDER/$RELEASE_FOLDER
10git clone git@github.com:wallabag/wallabag.git -b $VERSION $TMP_FOLDER/$RELEASE_FOLDER/$VERSION
11cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && SYMFONY_ENV=$ENV composer up -n --no-dev
12cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console wallabag:install --env=$ENV
13cd $TMP_FOLDER/$RELEASE_FOLDER && tar czf wallabag-$VERSION.tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" $VERSION
14echo "MD5 checksum of the package for wallabag $VERSION"
15md5 $TMP_FOLDER/$RELEASE_FOLDER/wallabag-$VERSION.tar.gz
16scp $TMP_FOLDER/$RELEASE_FOLDER/wallabag-$VERSION.tar.gz framasoft_bag@78.46.248.87:/var/www/framabag.org/web
17rm -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
3ENV=$1
4TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
5
6rm -rf var/cache/*
7git fetch origin
8git fetch --tags
9git checkout $TAG
10SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
11php bin/console cache:clear --env=$ENV