This repository was archived by the owner on Aug 14, 2023. It is now read-only.
File tree 5 files changed +7
-20
lines changed
files/etc/apt/preferences.d
test-integration/spec/hypriotos-image
5 files changed +7
-20
lines changed Original file line number Diff line number Diff line change @@ -103,10 +103,6 @@ echo "deb [arch=armhf] https://download.docker.com/linux/raspbian buster $DOCKER
103
103
104
104
c_rehash
105
105
106
- # set up hypriot rpi repository for raspbian specific packages
107
- echo ' deb https://packagecloud.io/Hypriot/rpi/raspbian/ buster main' >> /etc/apt/sources.list.d/hypriot.list
108
- curl -L https://packagecloud.io/Hypriot/rpi/gpgkey | apt-key add -
109
-
110
106
RPI_ORG_FPR=CF8A1AF502A2AA2D763BAE7E82B129927FA3303E RPI_ORG_KEY_URL=http://archive.raspberrypi.org/debian/raspberrypi.gpg.key
111
107
get_gpg " ${RPI_ORG_FPR} " " ${RPI_ORG_KEY_URL} "
112
108
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 14
14
15
15
describe command ( 'dpkg -l docker-ce' ) do
16
16
its ( :stdout ) { should match /ii docker-ce/ }
17
- its ( :stdout ) { should match /5:19.03.2 ~3-0~raspbian/ }
17
+ its ( :stdout ) { should match /5:19.03.3 ~3-0~raspbian/ }
18
18
its ( :stdout ) { should match /armhf/ }
19
19
its ( :exit_status ) { should eq 0 }
20
20
end
42
42
it { should be_owned_by 'root' }
43
43
end
44
44
45
- describe file ( '/usr/sbin /runc' ) do
45
+ describe file ( '/usr/bin /runc' ) do
46
46
it { should be_file }
47
47
it { should be_mode 755 }
48
48
it { should be_owned_by 'root' }
87
87
end
88
88
89
89
describe command ( 'docker -v' ) do
90
- its ( :stdout ) { should match /Docker version 19.03.2 , build/ }
90
+ its ( :stdout ) { should match /Docker version 19.03.3 , build/ }
91
91
its ( :exit_status ) { should eq 0 }
92
92
end
93
93
94
94
describe command ( 'docker version' ) do
95
- its ( :stdout ) { should match /Client: Docker Engine - Community. Version: 19.03.2 . API version: 1.40/m }
96
- its ( :stdout ) { should match /Server: Docker Engine - Community. Engine:. Version: 19.03.2 . API version: 1.40/m }
95
+ its ( :stdout ) { should match /Client: Docker Engine - Community. Version: 19.03.3 . API version: 1.40/m }
96
+ its ( :stdout ) { should match /Server: Docker Engine - Community. Engine:. Version: 19.03.3 . API version: 1.40/m }
97
97
its ( :exit_status ) { should eq 0 }
98
98
end
99
99
Original file line number Diff line number Diff line change 1
1
require 'spec_helper'
2
2
3
3
describe file ( '/etc/apt/sources.list.d/hypriot.list' ) do
4
- it { should be_file }
5
- it { should be_mode 644 }
6
- it { should be_owned_by 'root' }
7
- it { should contain 'deb https://packagecloud.io/Hypriot/rpi/raspbian/ buster main' }
4
+ it { should_not be_file }
8
5
end
9
6
10
7
describe package ( 'apt-transport-https' ) do
Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ export KERNEL_BUILD="1.20190819-1"
13
13
# export KERNEL_URL=https://62-32913687-gh.circle-artifacts.com/0/home/circleci/project/output/20180320-092128/raspberrypi-kernel_20180320-092128_armhf.deb
14
14
# export KERNEL_VERSION="4.19.66"
15
15
export DOCKER_CE_CHANNEL="stable" # stable, test or edge
16
- export DOCKER_CE_VERSION="5:19.03.2 ~3-0~raspbian-buster"
16
+ export DOCKER_CE_VERSION="5:19.03.3 ~3-0~raspbian-buster"
17
17
export DOCKER_COMPOSE_VERSION="1.23.2"
18
18
export DOCKER_MACHINE_VERSION="0.16.2"
You can’t perform that action at this time.
0 commit comments