Skip to content

Commit c3c13f1

Browse files
authored
add concourse 5.4.0 (#82)
* add concourse 5.4.0 * upgrade ansible
1 parent 7d3f6e8 commit c3c13f1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# Concourse version
3-
concourseci_version : "v5.3.0"
3+
concourseci_version : "v5.4.0"
44
## Dir structure
55
concourseci_base_dir : "/opt/concourseci"
66
concourseci_bin_dir : "{{ concourseci_base_dir }}/bin"

test/ansible-setup.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ set -e
33

44
AVM_VERSION="v1.0.0"
55

6-
export ANSIBLE_VERSIONS_1="2.6.17"
6+
export ANSIBLE_VERSIONS_1="2.6.18"
77
export INSTALL_TYPE_1="pip"
88
export ANSIBLE_LABEL_1="vOne"
99

10-
export ANSIBLE_VERSIONS_2="2.7.11"
10+
export ANSIBLE_VERSIONS_2="2.7.12"
1111
export INSTALL_TYPE_2="pip"
1212
export ANSIBLE_LABEL_2="vTwo"
1313

14-
export ANSIBLE_VERSIONS_3="2.8.1"
14+
export ANSIBLE_VERSIONS_3="2.8.3"
1515
export INSTALL_TYPE_3="pip"
1616
export ANSIBLE_LABEL_3="vThree"
1717

test/integration/simple/serverspec/d_job_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
builds = "#{fly} builds"
55

66
describe 'simple_success job' do
7-
describe command("#{builds} | grep simple_success") do
7+
describe command("sleep 10 && #{builds} | grep simple_success") do
88
it 'simple_success are in the builds' do
99
puts '#################################'
1010
puts subject.stdout.to_s
@@ -14,7 +14,7 @@
1414
end
1515
end
1616

17-
describe command("#{builds} | grep simple_success | head -1 | awk '{ print $4 }'") do
17+
describe command("sleep 10 && #{builds} | grep simple_success | head -1 | awk '{ print $4 }'") do
1818
it 'simple_success pipeline should succeed' do
1919
puts '#################################'
2020
puts subject.stdout.to_s

0 commit comments

Comments
 (0)