Skip to content
Open
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
18 changes: 18 additions & 0 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,24 @@ jobs:
--driver ${{ matrix.driver }} \
${{ matrix.network_flag }} \
${{ env.LOG_ARGS }}
- name: Copy testdata for image build
run: |
echo ">>> Copying testdata to ./out"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This log does not add any value, and it hides the actual command if the step command is folded. Please remove it.

cp -r test/integration/testdata ./out
- name: minikube image load
run: |
./out/minikube image load docker.io/library/alpine ${{ env.LOG_ARGS }}
- name: minikube image save
run: |
echo ">>> Saving alpine image to alpine.tar"
./out/minikube image save docker.io/library/alpine alpine.tar ${{ env.LOG_ARGS }}
- name: minikube image load alpine.tar
run: |
echo ">>> Loading image from alpine.tar into minikube"
./out/minikube image load alpine.tar ${{ env.LOG_ARGS }}
- name: minikube image build
run: |
./out/minikube image build -t test-image ./out/testdata/docker-env ${{ env.LOG_ARGS }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All the changes here belongs to previous commit, please squash.

- name: Inspect minikube
if: always()
run: |
Expand Down