1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

Change local CI test script name

because Rakefile execution locks Ruby version
This commit is contained in:
Takashi Kokubun 2015-06-07 17:29:15 +09:00
parent c6aa5ac033
commit c0190ef3ce
3 changed files with 9 additions and 9 deletions

View file

@ -15,11 +15,6 @@ namespace :spec do
task :update do task :update do
system('cd spec && rake ugly') system('cd spec && rake ugly')
end end
desc 'Check all specs'
task :release do
abort 'Spec failed!' unless system('./test.sh')
end
end end
namespace :rails do namespace :rails do
@ -30,4 +25,3 @@ namespace :rails do
end end
task default: [:spec, 'rails:spec'] task default: [:spec, 'rails:spec']
task release: ['spec:release']

6
release Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
set -e
source ./test
bundle exec rake release

View file

@ -4,9 +4,9 @@ set -e
trap 'rm .ruby-version' 0 trap 'rm .ruby-version' 0
VERSIONS=( VERSIONS=(
2.2.2
2.1.6
2.0.0 2.0.0
2.1.6
2.2.2
) )
function test_with() { function test_with() {
@ -20,6 +20,6 @@ for version in ${VERSIONS[@]}; do
test_with $version test_with $version
done done
rbenv local ${VERSIONS[0]} rbenv local ${VERSIONS[2]}
ruby -v ruby -v
rake rails:spec rake rails:spec