diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6e5070c..5d64d97 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -19,16 +19,20 @@ jobs: with: java-version: '17' distribution: 'adopt' - - - name: Create Kind Cluster - uses: helm/kind-action@v1.5.0 - - name: Test with Maven + + - name: Unit Testing with Maven run: | - kubectl cluster-info --context kind-chart-testing - mvn -B compile --file ./resilience-bench/operator/pom.xml - find ./resilience-bench/operator/target/classes/META-INF/fabric8 -type f -name "*-v1.yml" | xargs -I {} kubectl apply -f {} - kubectl get crd mvn -B test --file ./resilience-bench/operator/pom.xml + + # - name: Create Kind Cluster + # uses: helm/kind-action@v1.5.0 + # - name: Test with Maven + # run: | + # kubectl cluster-info --context kind-chart-testing + # mvn -B compile --file ./resilience-bench/operator/pom.xml + # find ./resilience-bench/operator/target/classes/META-INF/fabric8 -type f -name "*-v1.yml" | xargs -I {} kubectl apply -f {} + # kubectl get crd + # mvn -B test --file ./resilience-bench/operator/pom.xml # Log in to GitHub Container Registry - name: Log in to the Container registry