1
0
mirror of https://github.com/kremalicious/blog.git synced 2025-02-14 21:10:25 +01:00
This commit is contained in:
Matthias Kretschmann 2016-04-24 15:31:10 +02:00
parent 5e8fdeb19e
commit 2b6ad3b010
Signed by: m
GPG Key ID: BD3C1F3EDD7831FC
3 changed files with 8 additions and 6 deletions

View File

@ -8,14 +8,14 @@ rvm:
cache: cache:
bundler: true bundler: true
directories: directories:
- node_modules - $TRAVIS_BUILD_DIR/node_modules
- bower_components - $TRAVIS_BUILD_DIR/bower_components
- _site/media/gen - $TRAVIS_BUILD_DIR/_site/media/gen
addons: addons:
artifacts: artifacts:
paths: paths:
- $HOME/build/kremalicious/kremalicious3/_site/media/gen - $TRAVIS_BUILD_DIR/_site/media/gen
apt: apt:
packages: packages:
- libgsl0ldbl - libgsl0ldbl

View File

@ -11,5 +11,5 @@ gulp deploy
echo "$(tput setaf 64)" # green echo "$(tput setaf 64)" # green
echo "---------------------------------------------" echo "---------------------------------------------"
echo " ✓ done rsync deployment " echo " ✓ done S3 deployment "
echo "$(tput sgr0)" # reset echo "$(tput sgr0)" # reset

View File

@ -10,7 +10,9 @@ echo "$(tput sgr0)" # reset
npm install gulp bower -g npm install gulp bower -g
npm install npm install
bower install bower install
bundle install
# Travis does that automatically after selecting ruby
#bundle install
echo "$(tput setaf 64)" # green echo "$(tput setaf 64)" # green
echo "---------------------------------------------" echo "---------------------------------------------"