dpl 1.8.43 → 1.8.44.travis.2303.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/dpl/provider.rb +0 -2
- data/lib/dpl/provider/cloud_foundry.rb +1 -1
- data/spec/provider/anynines_spec.rb +1 -1
- data/spec/provider/azure_webapps_spec.rb +1 -1
- data/spec/provider/bluemixcloudfoundry_spec.rb +1 -1
- data/spec/provider/cloudfoundry_spec.rb +1 -1
- metadata +6 -48
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3795dcb1ce630af76862e8f4a8d74155237c5a5b
|
|
4
|
+
data.tar.gz: 68c9c5f0377c1a2280009cc9fc63736d263e4698
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e274e623b9c2c4b0c064403ec52f603f18fbcc5f91caa52306c4af1690ab54eaa01e1b570efa50df7d3b7a4a82c64d2bfe93493a2f63851880f483ae41c32ea
|
|
7
|
+
data.tar.gz: eba67812e807cec571a71bce3fba0f6522ff07c405c66a541586245e5278c548ec5239d1a65375991759199ab1ba46ddc138aafdf61dd18b6931eeb3994d41f2
|
data/lib/dpl/provider.rb
CHANGED
|
@@ -181,8 +181,6 @@ module DPL
|
|
|
181
181
|
log "Cleaning up git repository with `git stash --all`. " \
|
|
182
182
|
"If you need build artifacts for deployment, set `deploy.skip_cleanup: true`. " \
|
|
183
183
|
"See https://docs.travis-ci.com/user/deployment/#Uploading-Files."
|
|
184
|
-
mkdir_p ".git/logs/refs"
|
|
185
|
-
context.shell "mkdi"
|
|
186
184
|
context.shell "git stash --all"
|
|
187
185
|
context.shell "mv ~/dpl .dpl"
|
|
188
186
|
end
|
|
@@ -3,7 +3,7 @@ module DPL
|
|
|
3
3
|
class CloudFoundry < Provider
|
|
4
4
|
|
|
5
5
|
def initial_go_tools_install
|
|
6
|
-
context.shell 'test $TRAVIS_OS_NAME = "
|
|
6
|
+
context.shell 'test x$TRAVIS_OS_NAME = "xlinux" && rel="linux64-binary" || rel="macosx64"; wget "https://cli.run.pivotal.io/stable?release=${rel}&source=github" -qO cf.tgz && tar -zxvf cf.tgz && rm cf.tgz'
|
|
7
7
|
end
|
|
8
8
|
|
|
9
9
|
def check_auth
|
|
@@ -11,7 +11,7 @@ describe DPL::Provider::Anynines do
|
|
|
11
11
|
|
|
12
12
|
describe "#check_auth" do
|
|
13
13
|
example do
|
|
14
|
-
expect(provider.context).to receive(:shell).with('test $TRAVIS_OS_NAME = "
|
|
14
|
+
expect(provider.context).to receive(:shell).with('test x$TRAVIS_OS_NAME = "xlinux" && rel="linux64-binary" || rel="macosx64"; wget "https://cli.run.pivotal.io/stable?release=${rel}&source=github" -qO cf.tgz && tar -zxvf cf.tgz && rm cf.tgz')
|
|
15
15
|
expect(provider.context).to receive(:shell).with('./cf api https://api.aws.ie.a9s.eu')
|
|
16
16
|
expect(provider.context).to receive(:shell).with('./cf login -u mallomar -p myreallyawesomepassword -o myorg -s outer')
|
|
17
17
|
provider.check_auth
|
|
@@ -13,7 +13,7 @@ describe DPL::Provider::BluemixCloudFoundry do
|
|
|
13
13
|
|
|
14
14
|
describe "#check_auth" do
|
|
15
15
|
example do
|
|
16
|
-
expect(provider.context).to receive(:shell).with('test $TRAVIS_OS_NAME = "
|
|
16
|
+
expect(provider.context).to receive(:shell).with('test x$TRAVIS_OS_NAME = "xlinux" && rel="linux64-binary" || rel="macosx64"; wget "https://cli.run.pivotal.io/stable?release=${rel}&source=github" -qO cf.tgz && tar -zxvf cf.tgz && rm cf.tgz')
|
|
17
17
|
expect(provider.context).to receive(:shell).with('./cf api api.eu-gb.bluemix.net --skip-ssl-validation')
|
|
18
18
|
expect(provider.context).to receive(:shell).with('./cf login -u Moonpie -p myexceptionallyaveragepassword -o myotherorg -s inner')
|
|
19
19
|
provider.check_auth
|
|
@@ -13,7 +13,7 @@ describe DPL::Provider::CloudFoundry do
|
|
|
13
13
|
|
|
14
14
|
describe "#check_auth" do
|
|
15
15
|
example do
|
|
16
|
-
expect(provider.context).to receive(:shell).with('test $TRAVIS_OS_NAME = "
|
|
16
|
+
expect(provider.context).to receive(:shell).with('test x$TRAVIS_OS_NAME = "xlinux" && rel="linux64-binary" || rel="macosx64"; wget "https://cli.run.pivotal.io/stable?release=${rel}&source=github" -qO cf.tgz && tar -zxvf cf.tgz && rm cf.tgz')
|
|
17
17
|
expect(provider.context).to receive(:shell).with('./cf api api.run.awesome.io --skip-ssl-validation')
|
|
18
18
|
expect(provider.context).to receive(:shell).with('./cf login -u mallomar -p myreallyawesomepassword -o myorg -s outer')
|
|
19
19
|
provider.check_auth
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dpl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.44.travis.2303.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Konstantin Haase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-10-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -225,55 +225,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
225
225
|
version: 1.9.3
|
|
226
226
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
227
227
|
requirements:
|
|
228
|
-
- - "
|
|
228
|
+
- - ">"
|
|
229
229
|
- !ruby/object:Gem::Version
|
|
230
|
-
version:
|
|
230
|
+
version: 1.3.1
|
|
231
231
|
requirements: []
|
|
232
232
|
rubyforge_project:
|
|
233
|
-
rubygems_version: 2.
|
|
233
|
+
rubygems_version: 2.6.14
|
|
234
234
|
signing_key:
|
|
235
235
|
specification_version: 4
|
|
236
236
|
summary: deploy tool
|
|
237
|
-
test_files:
|
|
238
|
-
- spec/cli_spec.rb
|
|
239
|
-
- spec/provider/anynines_spec.rb
|
|
240
|
-
- spec/provider/appfog_spec.rb
|
|
241
|
-
- spec/provider/atlas_spec.rb
|
|
242
|
-
- spec/provider/azure_webapps_spec.rb
|
|
243
|
-
- spec/provider/bintray_spec.rb
|
|
244
|
-
- spec/provider/bitballoon_spec.rb
|
|
245
|
-
- spec/provider/bluemixcloudfoundry_spec.rb
|
|
246
|
-
- spec/provider/boxfuse_spec.rb
|
|
247
|
-
- spec/provider/catalyze_spec.rb
|
|
248
|
-
- spec/provider/chef_supermarket_spec.rb
|
|
249
|
-
- spec/provider/cloud66_spec.rb
|
|
250
|
-
- spec/provider/cloud_files_spec.rb
|
|
251
|
-
- spec/provider/cloudfoundry_spec.rb
|
|
252
|
-
- spec/provider/code_deploy_spec.rb
|
|
253
|
-
- spec/provider/deis_spec.rb
|
|
254
|
-
- spec/provider/divshot_spec.rb
|
|
255
|
-
- spec/provider/elastic_beanstalk_spec.rb
|
|
256
|
-
- spec/provider/firebase_spec.rb
|
|
257
|
-
- spec/provider/gae_spec.rb
|
|
258
|
-
- spec/provider/gcs_spec.rb
|
|
259
|
-
- spec/provider/hackage_spec.rb
|
|
260
|
-
- spec/provider/heroku_spec.rb
|
|
261
|
-
- spec/provider/lambda_spec.rb
|
|
262
|
-
- spec/provider/launchpad_spec.rb
|
|
263
|
-
- spec/provider/modulus_spec.rb
|
|
264
|
-
- spec/provider/npm_spec.rb
|
|
265
|
-
- spec/provider/openshift_spec.rb
|
|
266
|
-
- spec/provider/ops_works_spec.rb
|
|
267
|
-
- spec/provider/packagecloud_spec.rb
|
|
268
|
-
- spec/provider/puppet_forge_spec.rb
|
|
269
|
-
- spec/provider/pypi_spec.rb
|
|
270
|
-
- spec/provider/releases_spec.rb
|
|
271
|
-
- spec/provider/rubygems_spec.rb
|
|
272
|
-
- spec/provider/s3_spec.rb
|
|
273
|
-
- spec/provider/scalingo_spec.rb
|
|
274
|
-
- spec/provider/script_spec.rb
|
|
275
|
-
- spec/provider/surge_spec.rb
|
|
276
|
-
- spec/provider/testfairy_spec.rb
|
|
277
|
-
- spec/provider/transifex_spec.rb
|
|
278
|
-
- spec/provider_spec.rb
|
|
279
|
-
- spec/spec_helper.rb
|
|
237
|
+
test_files: []
|