This is an automated email from the ASF dual-hosted git repository.

zhangjintao pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/apisix-helm-chart.git


The following commit(s) were added to refs/heads/gh-pages by this push:
     new ada38c0  ci: remove unused directory (#512)
ada38c0 is described below

commit ada38c000f2de1ca37fb9a84739718086b8b4007
Author: Jintao Zhang <[email protected]>
AuthorDate: Fri Mar 17 09:37:11 2023 +0800

    ci: remove unused directory (#512)
    
    Signed-off-by: Jintao Zhang <[email protected]>
---
 .github/actions/setup-kind |  1 -
 .github/workflows/ci.yaml  | 70 ----------------------------------------------
 2 files changed, 71 deletions(-)

diff --git a/.github/actions/setup-kind b/.github/actions/setup-kind
deleted file mode 160000
index aa272fe..0000000
--- a/.github/actions/setup-kind
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit aa272fe2a7309878ffc2a81c56cfe3ef108ae7d0
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
deleted file mode 100644
index 702068c..0000000
--- a/.github/workflows/ci.yaml
+++ /dev/null
@@ -1,70 +0,0 @@
-name: CI
-
-on:
-  pull_request:
-    branches:
-      - "*"
-
-  push:
-
-jobs:
-
-  helm:
-    name: Helm chart
-    runs-on: ubuntu-latest
-    strategy:
-      matrix:
-        k8s: [v1.14.10, v1.15.12, v1.16.15, v1.17.17, v1.18.19, v1.19.11, 
v1.20.7, v1.21.1]
-
-    steps:
-
-      - name: Checkout
-        uses: actions/checkout@v2
-        with:
-          submodules: recursive
-
-      - name: Lint
-        run: |
-          docker run --rm --interactive --network host \
-              --name ct-lint \
-              --volume $PWD:/workdir \
-              --workdir /workdir/charts/apisix \
-              quay.io/helmpack/chart-testing:v3.4.0 sh -c 'helm dependency 
update \
-               && cd ../.. \
-               && helm repo add bitnami https://charts.bitnami.com/bitnami \
-               && helm repo add apisix https://charts.apiseven.com \
-               && ct lint \
-                  --charts charts/apisix \
-                  --charts charts/apisix-dashboard \
-                  --charts charts/apisix-ingress-controller'
-
-      - name: fix permissions
-        run: |
-          sudo mkdir -p $HOME/.kube
-          sudo chmod -R 777 $HOME/.kube
-
-      - name: Create Kubernetes ${{ matrix.k8s }} cluster
-        id: kind
-        uses: ./.github/actions/setup-kind
-        with:
-          version: v0.11.0
-          config: test/e2e/kind.yaml
-          image: kindest/node:${{ matrix.k8s }}
-
-      - name: Test
-        env:
-          KIND_CLUSTER_NAME: kind
-          SKIP_CLUSTER_CREATION: true
-        run: |
-          kind get kubeconfig > $HOME/.kube/kind-config-kind
-          docker run --rm --interactive --network host \
-              --name ct \
-              --volume $HOME/.kube/kind-config-kind:/root/.kube/config \
-              --volume $PWD:/workdir \
-              --workdir /workdir/charts/apisix \
-              quay.io/helmpack/chart-testing:v3.4.0 sh -c 'helm dependency 
update \
-               && cd ../.. \
-               && helm repo add bitnami https://charts.bitnami.com/bitnami \
-               && helm repo add apisix https://charts.apiseven.com \
-               && ct install \
-                  --charts charts/apisix'

Reply via email to