Skip to content

Commit efa2bcd

Browse files
test(ci) : update integration test workflow
Signed-off-by: Alexandre Lamarre <[email protected]>
1 parent 5090245 commit efa2bcd

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

.github/workflows/integration.yaml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,14 @@ jobs:
4444
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
4545
with:
4646
go-version: 1.23
47+
- name : Install ginkgo from go.mod
48+
run : go install github.com/onsi/ginkgo/v2/ginkgo
4749
- name : Install helm
4850
uses: azure/setup-helm@b9e51907a09c216f16ebe8536097933489208112 # v4
4951
with:
5052
token: ${{ secrets.GITHUB_TOKEN }}
51-
- name: Set up Docker Buildx
52-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
53+
# - name: Set up Docker Buildx
54+
# uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
5355
- name : Install k3d
5456
run : ./.github/workflows/e2e/scripts/install-k3d.sh
5557
- name : Setup test environment
@@ -58,18 +60,18 @@ jobs:
5860
k3d kubeconfig get test-cluster > kubeconfig.yaml
5961
- name : Debug kubeconfig
6062
run : cat kubeconfig.yaml
61-
- name : Build helm-project-operator
62-
run : BUILD_TARGET=helm-project-operator ./scripts/build
63-
- name : Validate build
64-
run : ./scripts/validate-ci
65-
- name : Package helm-project-operator
66-
run : |
67-
BUILD_TARGET=helm-project-operator ./scripts/package
68-
BUILD_TARGET=helm-project-operator source ./scripts/version
69-
k3d image import -c test-cluster $IMAGE
70-
- name : Debug k3d images
71-
run : docker exec k3d-test-cluster-server-0 crictl images
72-
- name : Run e2e tests
63+
# - name : Build helm-project-operator
64+
# run : BUILD_TARGET=helm-project-operator ./scripts/build
65+
# - name : Validate build
66+
# run : ./scripts/validate-ci
67+
# - name : Package helm-project-operator
68+
# run : |
69+
# BUILD_TARGET=helm-project-operator ./scripts/package
70+
# BUILD_TARGET=helm-project-operator source ./scripts/version
71+
# k3d image import -c test-cluster $IMAGE
72+
# - name : Debug k3d images
73+
# run : docker exec k3d-test-cluster-server-0 crictl images
74+
- name : Run integration tests
7375
run : |
7476
KUBECONFIG=$KUBECONFIG ./scripts/integration
7577
env:

0 commit comments

Comments
 (0)