From 8497225b7ae6eb2e0be2cbbdf7911faa2c8d933a Mon Sep 17 00:00:00 2001 From: Paul Yuknewicz Date: Mon, 22 Jul 2024 23:22:43 -0700 Subject: [PATCH] Disabling conflicting GH action workflow steps Signed-off-by: Paul Yuknewicz --- .github/workflows/validate.yaml | 75 ++++++++++++++++----------------- 1 file changed, 36 insertions(+), 39 deletions(-) diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index c3a570850..99334c83b 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -132,9 +132,6 @@ jobs: dapr --version - name: Install Dapr - Kubernetes run: | - helm repo add bitnami https://charts.bitnami.com/bitnami - helm repo update - helm install redis bitnami/redis --version 17.14.5 dapr init -k --dev --runtime-version=${{ env.DAPR_RUNTIME_VERSION }} --wait || kubectl get pods --all-namespaces kubectl get nodes -o wide for pod in `dapr status -k | awk '/dapr/ {print $1}'`; do kubectl describe pod -l app=$pod -n dapr-system ; kubectl logs -l app=$pod -n dapr-system; done @@ -148,48 +145,48 @@ jobs: pushd tutorials/hello-world make validate popd - - name: Validate hello-kubernetes multi app run - if: matrix.os == 'ubuntu-latest' - run: | - pushd tutorials/hello-kubernetes - make validate_multi_app_run - popd + # - name: Validate hello-kubernetes multi app run + # if: matrix.os == 'ubuntu-latest' + # run: | + # pushd tutorials/hello-kubernetes + # make validate_multi_app_run + # popd - name: Validate hello-kubernetes normal run if: matrix.os == 'ubuntu-latest' run: | pushd tutorials/hello-kubernetes make validate_normal_run popd - - name: Validate distributed-calculator - if: matrix.os == 'ubuntu-latest' - run: | - pushd tutorials/distributed-calculator - make validate - popd - - name: Validate pub-sub - if: matrix.os == 'ubuntu-latest' - run: | - pushd tutorials/pub-sub - make validate - popd - - name: Validate bindings - if: matrix.os == 'ubuntu-latest' - run: | - pushd tutorials/bindings - make validate - popd - - name: Validate secretstore - if: matrix.os == 'ubuntu-latest' - run: | - pushd tutorials/secretstore - make validate - popd - - name: Validate observability - if: matrix.os == 'ubuntu-latest' - run: | - pushd tutorials/observability - make validate - popd + # - name: Validate distributed-calculator + # if: matrix.os == 'ubuntu-latest' + # run: | + # pushd tutorials/distributed-calculator + # make validate + # popd + # - name: Validate pub-sub + # if: matrix.os == 'ubuntu-latest' + # run: | + # pushd tutorials/pub-sub + # make validate + # popd + # - name: Validate bindings + # if: matrix.os == 'ubuntu-latest' + # run: | + # pushd tutorials/bindings + # make validate + # popd + # - name: Validate secretstore + # if: matrix.os == 'ubuntu-latest' + # run: | + # pushd tutorials/secretstore + # make validate + # popd + # - name: Validate observability + # if: matrix.os == 'ubuntu-latest' + # run: | + # pushd tutorials/observability + # make validate + # popd - name: Linkcheck README.md run: | make validate