This repository was archived by the owner on Aug 14, 2023. It is now read-only.
File tree 4 files changed +2
-16
lines changed
test-integration/spec/hypriotos-image
4 files changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ apt-get -y install --no-install-recommends ${packages[*]}
50
50
pip install docker-compose==" ${DOCKER_COMPOSE_VERSION} "
51
51
52
52
# install docker-machine
53
- curl -L " https://github.com/docker/machine/releases/download/v${DOCKER_MACHINE_VERSION} /docker-machine-$( uname -s) -$( uname -m ) " > /usr/local/bin/docker-machine
53
+ curl -L " https://github.com/docker/machine/releases/download/v${DOCKER_MACHINE_VERSION} /docker-machine-$( uname -s) -$( dpkg --print-architecture ) " > /usr/local/bin/docker-machine
54
54
chmod +x /usr/local/bin/docker-machine
55
55
56
56
# install ODROID kernel
Original file line number Diff line number Diff line change 51
51
describe package ( 'initramfs-tools' ) do
52
52
it { should be_installed }
53
53
end
54
- describe package ( 'linux-image-c1 ' ) do
54
+ describe package ( 'linux-image-3.10.104-186 ' ) do
55
55
it { should be_installed }
56
56
end
57
57
62
62
describe package ( 'docker-engine' ) do
63
63
it { should be_installed }
64
64
end
65
- describe package ( 'docker-compose' ) do
66
- it { should be_installed }
67
- end
68
- describe package ( 'docker-machine' ) do
69
- it { should be_installed }
70
- end
Original file line number Diff line number Diff line change 1
1
require 'spec_helper'
2
2
3
3
describe package ( 'docker-compose' ) do
4
- it { should be_installed }
5
- end
6
-
7
- describe command ( 'dpkg -l docker-compose' ) do
8
4
it { should_not be_installed }
9
5
end
10
6
Original file line number Diff line number Diff line change 1
1
require 'spec_helper'
2
2
3
3
describe package ( 'docker-machine' ) do
4
- it { should be_installed }
5
- end
6
-
7
- describe command ( 'dpkg -l docker-machine' ) do
8
4
it { should_not be_installed }
9
5
end
10
6
You can’t perform that action at this time.
0 commit comments