Skip to content

Commit

Permalink
Merge pull request #269 from jmesnil/faster_ci
Browse files Browse the repository at this point in the history
Load wildfly application images in Minikube
  • Loading branch information
yersan authored Mar 15, 2023
2 parents 640feca + f867f68 commit 7aa9c1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
minikube version: v1.22.0
kubernetes version: v1.20.0
driver: docker
- name: Load WildFly images used for testing
run: |-
minikube image load --pull=true quay.io/wildfly-quickstarts/wildfly-operator-quickstart:18.0
minikube image load --pull=true quay.io/wildfly-quickstarts/wildfly-operator-quickstart:bootable-21.0
minikube image load --pull=true quay.io/wildfly-quickstarts/clusterbench:latest
- name: Containerized End-to-End Tests
run: eval $(minikube -p minikube docker-env) && make test-e2e-minikube
- name: Docker Login to Quay.io (main only)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ run-test-e2e:
$(KUSTOMIZE) build config/rbac | kubectl apply -f -
mkdir -p dry-run
$(KUSTOMIZE) build config/tests > dry-run/test-resources.yaml
LOCAL_MANAGER=0 go test -v ./test/e2e/... -coverprofile cover.out
LOCAL_MANAGER=0 go test -timeout 20m -v ./test/e2e/... -coverprofile cover.out
$(KUSTOMIZE) build config/rbac | kubectl delete --ignore-not-found=true -f -

.PHONY: clean
Expand Down

0 comments on commit 7aa9c1b

Please sign in to comment.