This repository has been archived by the owner on Aug 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #317 from hypriot/raw-image-032
Use raw image 0.3.2 with bigger SD card size
- Loading branch information
Showing
6 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
builder/test-integration/spec/hypriotos-docker/docker-busybox-httpd_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
require 'spec_helper' | ||
|
||
describe command('docker pull hypriot/rpi-busybox-httpd:0.1.0') do | ||
describe command('docker pull hypriot/rpi-busybox-httpd:0.5') do | ||
its(:exit_status) { should eq 0 } | ||
end | ||
|
||
describe command('docker run -t --rm hypriot/rpi-busybox-httpd:0.1.0 busybox') do | ||
describe command('docker run -t --rm hypriot/rpi-busybox-httpd:0.5 busybox') do | ||
its(:stdout) { should match /BusyBox v1.20.2/ } | ||
its(:exit_status) { should eq 0 } | ||
end | ||
|
||
describe command('docker run -t --rm hypriot/rpi-busybox-httpd:0.1.0 busybox httpd') do | ||
describe command('docker run -t --rm hypriot/rpi-busybox-httpd:0.5 busybox httpd') do | ||
its(:exit_status) { should eq 0 } | ||
end |
6 changes: 3 additions & 3 deletions
6
builder/test-integration/spec/hypriotos-docker/docker-node_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
require 'spec_helper' | ||
|
||
describe command('docker pull hypriot/rpi-node:0.12.0') do | ||
describe command('docker pull node:10.16.3-slim') do | ||
its(:exit_status) { should eq 0 } | ||
end | ||
|
||
describe command('docker run -t --rm hypriot/rpi-node:0.12.0 node --version') do | ||
its(:stdout) { should match /v0.12.0/ } | ||
describe command('docker run -t --rm node:10.16.3-slim node --version') do | ||
its(:stdout) { should match /v10.16.3/ } | ||
# its(:stderr) { should match /^$/ } | ||
its(:exit_status) { should eq 0 } | ||
end |
6 changes: 3 additions & 3 deletions
6
builder/test-integration/spec/hypriotos-image/base/kernel_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
require 'spec_helper' | ||
|
||
describe command('uname -r') do | ||
its(:stdout) { should match /4.19.58(-v7)?+/ } | ||
its(:stdout) { should match /4.19.66(-v7)?+/ } | ||
its(:exit_status) { should eq 0 } | ||
end | ||
|
||
describe file('/lib/modules/4.19.58+/kernel') do | ||
describe file('/lib/modules/4.19.66+/kernel') do | ||
it { should be_directory } | ||
end | ||
|
||
describe file('/lib/modules/4.19.58-v7+/kernel') do | ||
describe file('/lib/modules/4.19.66-v7+/kernel') do | ||
it { should be_directory } | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters