Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ci for release-0.10 branch #1558

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,13 @@ jobs:
set -o pipefail
bash hack/test.sh 2>&1 | tee /tmp/e2e-test.log
- name: Upload operator logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: e2e-operator-run-${{ matrix.k3s-version }}.log
path: /tmp/e2e-operator-run.log
if: ${{ failure() }}
- name: Upload test logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: e2e-test-${{ matrix.k3s-version }}.log
path: /tmp/e2e-test.log
Expand All @@ -131,19 +131,19 @@ jobs:
kubectl describe -n argocd-e2e-cluster-config $(kubectl get po -n argocd-e2e-cluster-config -o=name | grep example-argocd-server) >> /tmp/e2e-server.log
fi
- name: Upload application controller logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: e2e-application-controller-${{ matrix.k3s-version }}.log
path: /tmp/e2e-application-controller.log
if: ${{ failure() }}
- name: Upload server logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: e2e-server-${{ matrix.k3s-version }}.log
path: /tmp/e2e-server.log
if: ${{ failure() }}
- name: Upload pod descriptions
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: e2e-pods-${{ matrix.k3s-version }}.log
path: /tmp/pods.log
Expand Down
Loading