Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.gitlab-ci.yml - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66bfa7e2facbcb21418970cd30678384599911b5 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# This file is generated by GitLab CI
jobs:
- script:
  - export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin
  - ruby -v
  - which ruby
  - gem install bundler
  - which bundle
  - echo $PATH
  - 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 spec
  name: Rspec
  branches: true
  tags: false
  runner: ruby,mysql
- script:
  - export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin
  - ruby -v
  - which ruby
  - gem install bundler
  - which bundle
  - echo $PATH
  - 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 spinach
  name: Spinach
  branches: true
  tags: false
  runner: ruby,mysql
- script:
  - export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin
  - ruby -v
  - which ruby
  - gem install bundler
  - which bundle
  - echo $PATH
  - 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 jasmine:ci
  name: Jasmine
  branches: true
  tags: false
  runner: ruby,mysql
- script:
  - export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin
  - ruby -v
  - which ruby
  - gem install bundler
  - which bundle
  - echo $PATH
  - bundle install --without postgres production --jobs $(nproc)
  - bundle exec rubocop
  name: Rubocop
  branches: true
  tags: false
  runner: ruby,mysql
- script:
  - export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin
  - export LC_ALL=en_US.UTF-8
  - ruby -v
  - which ruby
  - gem install bundler
  - which bundle
  - echo $PATH
  - bundle install --without postgres production --jobs $(nproc)
  - bundle exec rake brakeman
  name: Brakeman
  branches: true
  tags: false
  runner: ruby,mysql
deploy_jobs: []
skip_refs: ''