1. 12 Nov, 2015 3 commits
    • Kamil Trzciński's avatar
      Merge branch 'ci-deprecate-dumped-yaml' into 'master' · 8ab5df9d
      Kamil Trzciński authored
      Remove deprecated dumped yaml file generated from previous job definitions
      
      
      
      See merge request !1777
      8ab5df9d
    • Kamil Trzciński's avatar
      Merge branch 'fix_project_build_links' into 'master' · 7ec7970b
      Kamil Trzciński authored
      Fix "Other Builds" links in Projects Build page
      
      Found a minor issue where all links in the "Other Builds" section of Project Builds was linking to the same build #. This should fix it.
      
      See merge request !1785
      7ec7970b
    • Kamil Trzciński's avatar
      Merge branch 'caches' into 'master' · 9573cf6c
      Kamil Trzciński authored
      Allow to define cache in `.gitlab-ci.yml`
      
      This extends `.gitlab-ci.yml` syntax to allow specifying caching files and directories between builds, making it easy to preserve ex. gems.
      
      ```
      cache:
        paths:
        - .bundle
        - vendor/
      
      before_script:
      - bundle install --path vendor/
      
      rspec:
        script:
        - bundle exec rspec
      ```
      
      This is based on Build Artifacts changes.
      
      /cc@dzaporozhets 
      
      See merge request !1786
      9573cf6c
  2. 11 Nov, 2015 11 commits
  3. 10 Nov, 2015 26 commits