Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: drop references to docker:// images from test/ #547

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/cp-not-required.bats
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function teardown() {
build:
from:
type: docker
url: docker://ubuntu:latest
url: oci:${UBUNTU_OCI}
run: |
touch /tmp/first
touch /tmp/second
Expand Down
2 changes: 1 addition & 1 deletion test/docker-base.bats
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function teardown() {
centos:
from:
type: docker
url: docker://centos:latest
url: oci:${CENTOS_OCI}
import:
- https://www.cisco.com/favicon.ico
run: |
Expand Down
12 changes: 6 additions & 6 deletions test/import.bats
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ fifth:
sixth:
from:
type: docker
url: docker://ubuntu:latest
url: oci:${UBUNTU_OCI}
import:
- stacker://fifth/files/test_file
- stacker://fifth/file2
Expand All @@ -375,7 +375,7 @@ seventh:
eigth:
from:
type: docker
url: docker://ubuntu:latest
url: oci:${UBUNTU_OCI}
import:
- path: test_file
dest: /dir/files/
Expand Down Expand Up @@ -476,7 +476,7 @@ EOF
src_folder_dest_non_existent_folder_case1:
from:
type: docker
url: docker://ubuntu:latest
url: oci:${UBUNTU_OCI}
import:
- path: folder1
dest: /folder2
Expand All @@ -486,7 +486,7 @@ src_folder_dest_non_existent_folder_case1:
src_folder_dest_non_existent_folder_case2:
from:
type: docker
url: docker://ubuntu:latest
url: oci:${UBUNTU_OCI}
import:
- path: folder1/
dest: /folder2
Expand All @@ -496,7 +496,7 @@ src_folder_dest_non_existent_folder_case2:
src_folder_dest_non_existent_folder_case3:
from:
type: docker
url: docker://ubuntu:latest
url: oci:${UBUNTU_OCI}
import:
- path: folder1
dest: /folder2/
Expand All @@ -508,7 +508,7 @@ src_folder_dest_non_existent_folder_case3:
src_folder_dest_non_existent_folder_case4:
from:
type: docker
url: docker://ubuntu:latest
url: oci:${UBUNTU_OCI}
import:
- path: folder1/
dest: /folder2/
Expand Down
Loading