File: ci.sh

package info (click to toggle)
ruby-messagebus-api 3.0.7%2Bgit.20130130.97b34ece-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 256 kB
  • ctags: 95
  • sloc: ruby: 1,360; sh: 9; makefile: 2
file content (14 lines) | stat: -rwxr-xr-x 188 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash -e
env

git checkout -B ci_temporary
git branch -D $BRANCH || true
git fetch
git checkout -f $BRANCH
git clean -df

bundle install --deployment

bundle exec rspec spec

exit $?