Skip to content
This repository was archived by the owner on Aug 14, 2023. It is now read-only.

Commit 53b45a9

Browse files
committed
Merge pull request #25 from hypriot/update-versions
Upgrade versions for rootfs and Docker engine
2 parents 98a9894 + 26aca02 commit 53b45a9

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

builder/build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ BUILD_RESULT_PATH="/workspace"
1313
BUILD_PATH="/build"
1414

1515
# where to store our base file system
16-
HYPRIOT_OS_VERSION="v0.7.1"
16+
HYPRIOT_OS_VERSION="v0.7.2"
1717
ROOTFS_TAR="rootfs-armhf-${HYPRIOT_OS_VERSION}.tar.gz"
1818
ROOTFS_TAR_PATH="$BUILD_RESULT_PATH/$ROOTFS_TAR"
1919

@@ -28,7 +28,7 @@ QEMU_ARCH="arm"
2828
export HYPRIOT_IMAGE_VERSION
2929

3030
# 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"
3232
export DOCKER_COMPOSE_VERSION="1.6.0-27"
3333
export DOCKER_MACHINE_VERSION="0.4.1-72"
3434

builder/test-integration/spec/hypriotos-image/base/release_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
it { should be_file }
55
it { should be_owned_by 'root' }
66
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"' }
88
its(:content) { should match 'HYPRIOT_DEVICE="ODROID C1/C1\+"' }
99
its(:content) { should match 'HYPRIOT_IMAGE_VERSION=' }
1010
end

builder/test-integration/spec/hypriotos-image/docker_spec.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
describe command('dpkg -l docker-hypriot') do
88
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/ }
1010
its(:exit_status) { should eq 0 }
1111
end
1212

@@ -47,13 +47,13 @@
4747
end
4848

4949
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/ }
5151
its(:exit_status) { should eq 0 }
5252
end
5353

5454
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 }
5757
its(:exit_status) { should eq 0 }
5858
end
5959

builder/test/os-release_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
expect(stdout).to contain('HYPRIOT_DEVICE="ODROID C1/C1')
3737
end
3838

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"$')
4141
end
4242

4343
if ENV.fetch('TRAVIS_TAG','') != ''

0 commit comments

Comments
 (0)