Skip to content

Commit

Permalink
hoge
Browse files Browse the repository at this point in the history
Signed-off-by: Shinya Hayashi <shinya-hayashi@cybozu.co.jp>
  • Loading branch information
peng225 committed Jun 14, 2024
1 parent 6bb882d commit 286a69b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
- run: |-
make -C test/e2e setup
ln -s $(pwd)/test/e2e/bin/kubectl-1.28.3 test/e2e/bin/kubectl
- run: make -C test/e2e image-build
- run: |-
make -C test/e2e launch-minikube PROFILE=profile1
make -C test/e2e launch-minikube PROFILE=profile2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,5 @@ jobs:
sudo modprobe -a kvm
sudo modprobe -a kvm_amd
- run: make -C test/e2e setup
- run: make -C test/e2e image-build
- run: make -C test/e2e test
5 changes: 4 additions & 1 deletion test/e2e/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,12 @@ delete-rook-ceph:
$(KUBECTL) delete -f testdata/persistentvolumes.yaml || :
$(MAKE) delete-loop-dev

.PHONY: image-build
image-build:
$(MAKE) -C ../.. docker-build

.PHONY: setup-components
setup-components:
$(MAKE) -C ../.. docker-build
# We can't use `minikube image load` due to a minikube's problem.
# ref. https://github.com/kubernetes/minikube/issues/17785
docker save controller:latest | $(SUDO) ctr -n k8s.io images import -
Expand Down

0 comments on commit 286a69b

Please sign in to comment.