travis-build-stages-demo 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8363bcef12c869679f755bc8eee87e5977e40d65
4
+ data.tar.gz: 12152d5507e7663f39666a0bf64ac71ec325413f
5
+ SHA512:
6
+ metadata.gz: d0e1468da64581a527a57f9e11a12a977163f82f07670020280ff5fa3fbe9244ff3d01ad98d4423e9bd6843d2b3bb0a30c332735e41300ee8545fc7ce7f741bd
7
+ data.tar.gz: 2c883a5d42949a66f80f3ea487e09da50561fe47a8bbb3250b87c976493a7943eb07bd86503d64c845f44997143c909fbde3a7d8a224804988d1a9ff4495af29
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gem 'sinatra'
@@ -0,0 +1,23 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ rack (1.6.5)
5
+ rack-protection (1.5.3)
6
+ rack
7
+ sinatra (1.4.8)
8
+ rack (~> 1.5)
9
+ rack-protection (~> 1.4)
10
+ tilt (>= 1.3, < 3)
11
+ tilt (2.0.7)
12
+
13
+ PLATFORMS
14
+ ruby
15
+
16
+ DEPENDENCIES
17
+ sinatra
18
+
19
+ RUBY VERSION
20
+ ruby 2.4.0p0
21
+
22
+ BUNDLED WITH
23
+ 1.14.5
@@ -0,0 +1 @@
1
+ web: bundle exec ruby web.rb -p $PORT
@@ -0,0 +1,13 @@
1
+ # Travis CI Build Stages Demo
2
+
3
+ Branches on this repository contain several demo `.travis.yml` files, as well as associated files, in order to demonstrate how to use the Build Stages feature in various usecases.
4
+
5
+ For example:
6
+
7
+ * A test stage with two jobs, and a deploy with one job: [Branch](https://github.com/travis-ci/build-stages-demo/tree/deploy-stage), [Build on Travis CI](https://build-stages-beta.travis-ci.org/travis-ci/build-stages-demo/builds/224034036)
8
+ * Warm up a cache with expensive dependencies in order to optimize test runs: [Branch](https://github.com/travis-ci/build-stages-demo/tree/pre-caching-dependencies), [Build on Travis CI](https://build-stages-beta.travis-ci.org/travis-ci/build-stages-demo/builds/224025125)
9
+ * Run several stages, including deployments to staging and production: [Branch](https://github.com/travis-ci/build-stages-demo/tree/master), [Build on Travis CI](https://build-stages-beta.travis-ci.org/travis-ci/build-stages-demo/builds/223978563)
10
+ * Using build stages combined with matrix expansion: [Branch](https://github.com/travis-ci/build-stages-demo/tree/matrix-expansion), [Build on Travis CI](https://build-stages-beta.travis-ci.org/travis-ci/build-stages-demo/builds/223978873)
11
+ * Sharing files between stages via S3: [Branch](https://github.com/travis-ci/build-stages-demo/tree/shared-storage-with-s3), [Build on Travis CI](https://build-stages-beta.travis-ci.org/travis-ci/build-stages-demo/builds/)
12
+
13
+ Feel free to fork this repository, hook it up to Travis CI, and try out the examples. If you have other interesting usecases we'd love a pull request :)
@@ -0,0 +1 @@
1
+ puts 'Travis CI build Stages demo gem release'
@@ -0,0 +1,3 @@
1
+ module BuildStagesDemo
2
+ VERSION = '0.0.1'
3
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: travis-build-stages-demo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Travis CI
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-05-09 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Travis CI build stages demo gem release.
14
+ email:
15
+ - contact@travis-ci.org
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - Gemfile
21
+ - Gemfile.lock
22
+ - Procfile
23
+ - README.md
24
+ - lib/build_stages_demo.rb
25
+ - lib/build_stages_demo/version.rb
26
+ homepage: https://github.com/travis-ci/build-stages-demo
27
+ licenses:
28
+ - MIT
29
+ metadata: {}
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubyforge_project:
46
+ rubygems_version: 2.6.11
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: Travis CI build stages demo gem release
50
+ test_files: []