Skip to content

Commit

Permalink
chore: remove unuse ghaction step and collect logs of karmadactl test.
Browse files Browse the repository at this point in the history
Signed-off-by: Lan Liang <[email protected]>
  • Loading branch information
liangyuanpeng committed Apr 10, 2024
1 parent 4898c0f commit d7c4dc2
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ jobs:
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: helm/[email protected]
with:
version: "v0.20.0"
- name: run karmadactl init test
run: |
export CLUSTER_VERSION=kindest/node:${{ matrix.k8s }}
Expand All @@ -48,11 +45,20 @@ jobs:
export KUBECONFIG=${HOME}/karmada/karmada-apiserver.config
GO111MODULE=on go install github.com/onsi/ginkgo/v2/ginkgo
ginkgo -v --race --trace -p --focus="[BasicPropagation] propagation testing deployment propagation testing" ./test/e2e/
- uses: chainguard-dev/actions/kind-diag@main
# Only upload logs on failure.
if: ${{ failure() }}
- name: export logs
if: always()
run: |
export ARTIFACTS_PATH=${{ github.workspace }}/karmadactl-test-logs/${{ matrix.k8s }}/
mkdir -p $ARTIFACTS_PATH
mkdir -p $ARTIFACTS_PATH/{karmada-host,member1,member2}
kind export logs --name=karmada-host $ARTIFACTS_PATH/karmada-host
kind export logs --name=member1 $ARTIFACTS_PATH/member1
kind export logs --name=member2 $ARTIFACTS_PATH/member2
- name: upload logs
if: always()
uses: actions/upload-artifact@v3
with:
cluster-resources: nodes,namespaces,
namespace-resources: configmaps,pods,svc
artifact-name: logs-${{ matrix.k8s}}
name: karmadactl_test_logs_${{ matrix.k8s }}
path: ${{ github.workspace }}/karmadactl-test-logs/${{ matrix.k8s }}/

0 comments on commit d7c4dc2

Please sign in to comment.