diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-06-03 19:46:59 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-06-03 19:46:59 +0300 |
commit | d7204d73a9ad0ea44fb1a2b51e6944c0461a2c39 (patch) | |
tree | 93b9f7a01894379b72e090fe56459caf38a495c1 /spec/models/build_spec.rb | |
parent | 94ae27312ad5816e8efc8d228faceb1d144e98ae (diff) | |
download | gitlab-ci-d7204d73a9ad0ea44fb1a2b51e6944c0461a2c39.tar.gz |
You should add runners to project. WHen runner added -> deploy key for runner added to gitlab project
Diffstat (limited to 'spec/models/build_spec.rb')
-rw-r--r-- | spec/models/build_spec.rb | 39 |
1 files changed, 20 insertions, 19 deletions
diff --git a/spec/models/build_spec.rb b/spec/models/build_spec.rb index c0969f7..a1891c8 100644 --- a/spec/models/build_spec.rb +++ b/spec/models/build_spec.rb @@ -1,3 +1,23 @@ +# == Schema Information +# +# Table name: builds +# +# id :integer not null, primary key +# project_id :integer +# ref :string(255) +# status :string(255) +# finished_at :datetime +# trace :text(2147483647) +# created_at :datetime not null +# updated_at :datetime not null +# sha :string(255) +# started_at :datetime +# tmp_file :string(255) +# before_sha :string(255) +# push_data :text +# runner_id :integer +# + require 'spec_helper' describe Build do @@ -32,22 +52,3 @@ describe Build do end - -# == Schema Information -# -# Table name: builds -# -# id :integer(4) not null, primary key -# project_id :integer(4) -# ref :string(255) -# status :string(255) -# finished_at :datetime -# trace :text(2147483647 -# created_at :datetime not null -# updated_at :datetime not null -# sha :string(255) -# started_at :datetime -# tmp_file :string(255) -# before_sha :string(255) -# - |