Skip to content

Commit

Permalink
e2e: pull and export stdin and stdout (#1436)
Browse files Browse the repository at this point in the history
* e2e: pull and export stdin and stdout

* List all resulting tar files
  • Loading branch information
abitrolly committed Aug 18, 2022
1 parent 2b54510 commit 771a9b4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/e2e.yaml
Expand Up @@ -82,3 +82,13 @@ jobs:
./app/crane pull --platform=linux/arm64 --format=oci $remote $distroless
./app/crane push $distroless $local
diff <(./app/crane manifest --platform linux/arm64 $remote) <(./app/crane manifest $local)
- name: crane pull image, and export it from stdin to filesystem tar to stdout
shell: bash
run: |
set -euxo pipefail
./app/crane pull ubuntu ubuntu.tar
./app/crane export - - < ubuntu.tar > filesystem.tar
ls -la *.tar

0 comments on commit 771a9b4

Please sign in to comment.