1. 20 Oct, 2016 1 commit
  2. 19 Oct, 2016 5 commits
    • Rémy Coutable's avatar
      Merge branch '22191-delete-dynamic-envs-mr' into 'master' · f0c7e671
      Rémy Coutable authored
      Delete dynamic environments
      
      - Adds "close environment" action to a merge request
      - Adds tabs to environments list
      - Adds close button to each environment row in environments list
      - Replaces Destroy button with Close button inside an environment
      - Adds close button to builds list inside an environment
      
      #### Configuration
      
      In order to enable stopping environments a valid `.gitlab-ci.yml` syntax has to be used:
      
      ```
      review:
        environment:
          name: review/$app
          on_stop: stop_review
      
      stop_review:
        script: echo Delete My App
        when: manual
        environment:
          name: review/$app
          action: stop
      ```
      
      This MR requires that `stop_review` has to have: `when`, `environment:name` and `environment:action` defined.
      The next MR after this one will verify that and enforce that these settings are configured.
      
      It will also implicitly configure these settings, making it possible to define it like this:
      
      ```
      review:
        environment:
          name: review/$app
          on_stop: stop_review
      
      stop_review:
        script: echo Delete My App
      ```
      
      Closes #22191 
      
      See merge request !6669
      f0c7e671
    • Stan Hu's avatar
      Merge branch 'sh-fix-pipeline-success-ruby21' into 'master' · f64e36c4
      Stan Hu authored
      Use Hash rocket syntax to maintain Ruby 2.1 compatibility
      
      Builds in Ruby 2.1 specs were failing in master: https://gitlab.com/gitlab-org/gitlab-ce/builds/5258614
          
      Closes #23498
      
      See merge request !6972
      f64e36c4
    • Stan Hu's avatar
      Use Hash rocket syntax to maintain Ruby 2.1 compatibility · 83b57067
      Stan Hu authored
      Builds in Ruby 2.1 specs were failing in master: https://gitlab.com/gitlab-org/gitlab-ce/builds/5258614
      
      Closes #23498
      83b57067
    • Jacob Schatz's avatar
      Merge branch 'pipeline-visiual-updates' into 'master' · a88ab269
      Jacob Schatz authored
      Fix pipeline alignment
      
      Before:   
      <img src="/uploads/8169695c5e594ee3f42a73cc1a91fd1a/Screen_Shot_2016-10-18_at_6.58.49_PM.png" width="400px">
      
      After:   
      <img src="/uploads/d608380057ef66223925db3524f691fb/Screen_Shot_2016-10-18_at_7.04.15_PM.png" width="400px">
      
      See merge request !6971
      a88ab269
    • Annabel Dunstone Gray's avatar
      Fix visual weirdness in pipelines · b47622b2
      Annabel Dunstone Gray authored
      b47622b2
  3. 18 Oct, 2016 34 commits