Commit 008249efbcd837f949f46e211f99cf5f75ce9bc5
1 parent
e9371699
Exists in
master
and in
29 other branches
Remove script/ci-build
Any CI build job should be as simple as `./script/quick-start && rake`. Cleaning up files etc should be the job of the CI system itself (i.e. we assume that a CI job runs against a fresh, clean git tree)
Showing
1 changed file
with
0 additions
and
14 deletions
Show diff stats
script/ci-build
@@ -1,14 +0,0 @@ | @@ -1,14 +0,0 @@ | ||
1 | -#!/bin/sh | ||
2 | - | ||
3 | -set -e | ||
4 | - | ||
5 | -build() { | ||
6 | - cp config/database.yml.sqlite3 config/database.yml && /usr/bin/rake db:schema:load && /usr/bin/rake | ||
7 | -} | ||
8 | - | ||
9 | -# build the code in the VCS | ||
10 | -build | ||
11 | - | ||
12 | -# build the release tarball as well | ||
13 | -version=$(ruby -Ilib -rnoosfero -e 'puts Noosfero::VERSION') | ||
14 | -rm -rf pkg/ && rake -f Rakefile.pkg && cd pkg/noosfero-${version}/ && build |