Skip to content
Open
Changes from 1 commit
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
7 changes: 7 additions & 0 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,13 @@ jobs:
--driver ${{ matrix.driver }} \
${{ matrix.network_flag }} \
${{ env.LOG_ARGS }}
- name: minikube image load
run: |
./out/minikube image load docker.io/library/alpine ${{ env.LOG_ARGS }}
- name: minikube image build
run: |
./out/minikube image build -t test-image . ${{ 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.

image build needs a Containerfile. You can create one in this test.


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