This repository was archived by the owner on Aug 14, 2023. It is now read-only.
File tree 4 files changed +9
-9
lines changed
test-integration/spec/hypriotos-image
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ BUILD_RESULT_PATH="/workspace"
13
13
BUILD_PATH=" /build"
14
14
15
15
# where to store our base file system
16
- HYPRIOT_OS_VERSION=" v0.7.1 "
16
+ HYPRIOT_OS_VERSION=" v0.7.2 "
17
17
ROOTFS_TAR=" rootfs-armhf-${HYPRIOT_OS_VERSION} .tar.gz"
18
18
ROOTFS_TAR_PATH=" $BUILD_RESULT_PATH /$ROOTFS_TAR "
19
19
@@ -28,7 +28,7 @@ QEMU_ARCH="arm"
28
28
export HYPRIOT_IMAGE_VERSION
29
29
30
30
# specific versions of kernel/firmware and docker tools
31
- export DOCKER_ENGINE_VERSION=" 1.10.0 -1"
31
+ export DOCKER_ENGINE_VERSION=" 1.10.1 -1"
32
32
export DOCKER_COMPOSE_VERSION=" 1.6.0-27"
33
33
export DOCKER_MACHINE_VERSION=" 0.4.1-72"
34
34
Original file line number Diff line number Diff line change 4
4
it { should be_file }
5
5
it { should be_owned_by 'root' }
6
6
its ( :content ) { should match 'HYPRIOT_OS="HypriotOS/armhf"' }
7
- its ( :content ) { should match 'HYPRIOT_OS_VERSION="v0.7.1 "' }
7
+ its ( :content ) { should match 'HYPRIOT_OS_VERSION="v0.7.2 "' }
8
8
its ( :content ) { should match 'HYPRIOT_DEVICE="ODROID C1/C1\+"' }
9
9
its ( :content ) { should match 'HYPRIOT_IMAGE_VERSION=' }
10
10
end
Original file line number Diff line number Diff line change 6
6
7
7
describe command ( 'dpkg -l docker-hypriot' ) do
8
8
its ( :stdout ) { should match /ii docker-hypriot/ }
9
- its ( :stdout ) { should match /1.10.0 -1/ }
9
+ its ( :stdout ) { should match /1.10.1 -1/ }
10
10
its ( :exit_status ) { should eq 0 }
11
11
end
12
12
47
47
end
48
48
49
49
describe command ( 'docker -v' ) do
50
- its ( :stdout ) { should match /Docker version 1.10.0 , build/ }
50
+ its ( :stdout ) { should match /Docker version 1.10.1 , build/ }
51
51
its ( :exit_status ) { should eq 0 }
52
52
end
53
53
54
54
describe command ( 'docker version' ) do
55
- its ( :stdout ) { should match /Client:. Version: 1.10.0 . API version: 1.22/m }
56
- its ( :stdout ) { should match /Server:. Version: 1.10.0 . API version: 1.22/m }
55
+ its ( :stdout ) { should match /Client:. Version: 1.10.1 . API version: 1.22/m }
56
+ its ( :stdout ) { should match /Server:. Version: 1.10.1 . API version: 1.22/m }
57
57
its ( :exit_status ) { should eq 0 }
58
58
end
59
59
Original file line number Diff line number Diff line change 36
36
expect ( stdout ) . to contain ( 'HYPRIOT_DEVICE="ODROID C1/C1' )
37
37
end
38
38
39
- it "uses os-rootfs version 'HYPRIOT_OS_VERSION=\" v0.7.1 \" '" do
40
- expect ( stdout ) . to contain ( '^HYPRIOT_OS_VERSION="v0.7.1 "$' )
39
+ it "uses os-rootfs version 'HYPRIOT_OS_VERSION=\" v0.7.2 \" '" do
40
+ expect ( stdout ) . to contain ( '^HYPRIOT_OS_VERSION="v0.7.2 "$' )
41
41
end
42
42
43
43
if ENV . fetch ( 'TRAVIS_TAG' , '' ) != ''
You can’t perform that action at this time.
0 commit comments