Skip to content

Commit

Permalink
Merge pull request #98 from sanger/develop
Browse files Browse the repository at this point in the history
Add Pacbio Run Name
  • Loading branch information
stevieing authored Feb 6, 2020
2 parents fb1cffc + 5a627aa commit f6a4015
Show file tree
Hide file tree
Showing 6 changed files with 107 additions and 78 deletions.
16 changes: 9 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
language: ruby
dist: xenial
services: mysql
bundler_args: "--without deployment"
cache:
bundler: true
sudo: required
before_install:
- gem update --system
- gem install bundler
cache: bundler
before_script:
- bundle exec rake db:setup
- bundle exec rake db:setup
script:
- bundle exec rubocop
- bundle exec rspec
- bundle exec rubocop
- bundle exec rspec
before_deploy: "./compile-build"
deploy:
provider: releases
Expand All @@ -22,4 +24,4 @@ deploy:
skip_cleanup: true
notifications:
slack:
secure: WOTWRYxxesHC3dBKSOmN6PO4hXrspjUA6Pnd/Z1H0AKUZO+pWPZExt3crnD1SdEq1FbNF7TYevJaXRURb9flG3cirvpm/uM4pRB3nMgWSjA3SQrl9JJeVGybAPuUNrrNc4LqyvFz6g3m96OzaQAE9hkkUclsVud6aYQ00jArBEw=
secure: WOTWRYxxesHC3dBKSOmN6PO4hXrspjUA6Pnd/Z1H0AKUZO+pWPZExt3crnD1SdEq1FbNF7TYevJaXRURb9flG3cirvpm/uM4pRB3nMgWSjA3SQrl9JJeVGybAPuUNrrNc4LqyvFz6g3m96OzaQAE9hkkUclsVud6aYQ00jArBEw=
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -221,4 +221,4 @@ DEPENDENCIES
rubocop

BUNDLED WITH
1.17.3
2.0.1
8 changes: 8 additions & 0 deletions db/migrate/20200131111908_add_run_name_to_pac_bio.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# frozen_string_literal: true

# AddRunNameToPacBio
class AddRunNameToPacBio < ActiveRecord::Migration
def change
add_column :pac_bio_run, :pac_bio_run_name, :string, comment: 'Name of the run'
end
end
Loading

0 comments on commit f6a4015

Please sign in to comment.