forked from spree/spree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·36 lines (30 loc) · 996 Bytes
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Remove Gemfile.lock if it exists
function rm_gemfile_lock(){
if [ -e "Gemfile.lock" ]
then
echo "Removing Gemfile.lock..."
rm Gemfile.lock
fi
}
# Switching Gemfile
function set_gemfile(){
echo "Switching Gemfile..."
export BUNDLE_GEMFILE="`pwd`/Gemfile"
}
# Spree defaults
echo "Setup Spree defaults and creating test application..."
rm_gemfile_lock
bundle check || bundle install
bundle exec rake test_app
# Spree API
echo "Setup Spree API and running RSpec..."
cd api; set_gemfile; rm_gemfile_lock; bundle install; bundle exec rspec spec
# Spree Backend
echo "Setup Spree backend and running RSpec..."
cd ../backend; set_gemfile; rm_gemfile_lock; bundle install; bundle exec rspec spec
# Spree Core
echo "Setup Spree core and running RSpec..."
cd ../core; set_gemfile; rm_gemfile_lock; bundle install; bundle exec rspec spec
# Spree Frontend
echo "Setup Spree frontend and running RSpec..."
cd ../frontend; set_gemfile; rm_gemfile_lock; bundle install; bundle exec rspec spec