blob: 8b28d493aceee09aec8fac321f3ccc18ebe55fe4 (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
Build script to run the tests of GitLab CE
=================================
These script can be run to tests of GitLab CE on a [configured](configure_a_runner_to_run_the_gitlab_ce_test_suite.md) runner.
# Build script used at ci.gitlab.org to test the private GitLab B.V. repo at dev.gitlab.org
```bash
export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin
ruby -v
which ruby
gem install bundler --no-ri --no-rdoc
cp config/database.yml.mysql config/database.yml
cp config/gitlab.yml.example config/gitlab.yml
sed "s/username\:.*$/username\: runner/" -i config/database.yml
sed "s/password\:.*$/password\: 'password'/" -i config/database.yml
sed "s/gitlabhq_test/gitlabhq_test_$((RANDOM/5000))/" -i config/database.yml
touch log/application.log
touch log/test.log
bundle install --without postgres production --jobs $(nproc)
bundle exec rake db:create RAILS_ENV=test
RAILS_ENV=test SIMPLECOV=true bundle exec rake test
```
# Build script on [GitHost.io](https://gitlab-ce.githost.io/projects/4/) to test the [GitLab.com repo](https://gitlab.com/gitlab-org/gitlab-ce)
```bash
# Install dependencies: phantomjs, redis, cmake
if [ ! -f ~/.runner_setup ]; then
echo "Setting up runner"
sudo wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.7-linux-x86_64.tar.bz2
sudo tar xjf phantomjs-1.9.7-linux-x86_64.tar.bz2
sudo mv phantomjs-1.9.7-linux-x86_64/bin/phantomjs /usr/local/bin/phantomjs
sudo apt-get update
sudo apt-get -y -q install mysql-server redis-server build-essential cmake curl
touch ~/.runner_setup
echo "Done setting up runner"
fi
# Install ruby
\curl -sSL https://get.rvm.io | bash -s stable --ruby
source ~/.rvm/scripts/rvm
# Prepare GitLab and run tests
ruby -v
gem install bundler
bundle install
cp config/database.yml.mysql config/database.yml
cp config/gitlab.yml.example config/gitlab.yml
RAILS_ENV=test bundle exec rake db:drop db:create
RAILS_ENV=test bundle exec rake test
```
# Troubleshooting
## InvalidByteSequenceError
Test pass locally but on CI there is an error with encoding.
One of the possible solutions for error: `Encoding::InvalidByteSequenceError: "\xF0" on US-ASCII` during build is setting the correct locale in the build job:
```
export LC_CTYPE=en_US.UTF-8
```
or
```
export LANG=en_US.UTF-8
```
|