Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into tls-nats
Browse files Browse the repository at this point in the history
Update CI scripts used in new concourse.
  • Loading branch information
andrew-su committed Aug 29, 2017
2 parents 49dd41a + 72eb955 commit 5cdd649
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
5 changes: 4 additions & 1 deletion ci/tasks/create-vsphere-errand-release-windows.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
---
platform: linux

image: docker:///bosh/windows
image_resource:
type: docker-image
source:
repository: bosh/windows

inputs:
- name: bosh-agent
Expand Down
5 changes: 4 additions & 1 deletion ci/tasks/test-integration-windows.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
---
platform: linux

image: docker:///bosh/agent
image_resource:
type: docker-image
source:
repository: bosh/agent

inputs:
- name: bosh-agent
Expand Down
5 changes: 4 additions & 1 deletion ci/tasks/test-unit.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
---
platform: linux

image: docker:///bosh/agent
image_resource:
type: docker-image
source:
repository: bosh/agent

inputs:
- name: bosh-agent
Expand Down
4 changes: 2 additions & 2 deletions integration/windows/utils/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func BuildAgent() error {
if err != nil {
return err
}
gomega.Eventually(session, 20*time.Minute).Should(gexec.Exit(0))
gomega.Eventually(session, 40*time.Minute).Should(gexec.Exit(0))
return nil
}

Expand All @@ -37,7 +37,7 @@ func StartVagrant(provider string) (Agent, error) {
if err != nil {
return Agent{}, err
}
gomega.Eventually(session, 20*time.Minute).Should(gexec.Exit(0))
gomega.Eventually(session, 40*time.Minute).Should(gexec.Exit(0))

return Agent{
ID: agentID,
Expand Down

0 comments on commit 5cdd649

Please sign in to comment.