Skip to content

Commit

Permalink
Upload e2e.log and junit_01.xml in all GH actions
Browse files Browse the repository at this point in the history
Signed-off-by: Davanum Srinivas <davanum@gmail.com>
  • Loading branch information
dims committed Dec 22, 2023
1 parent 76c40a9 commit 6541221
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/periodic_conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,10 @@ jobs:
- name: Run full conformance test
run: |
bin/hydrophone --conformance --output-dir ./results
bin/hydrophone --conformance --output-dir ${{ github.workspace }}/results/
- name: Archive conformance results
uses: actions/upload-artifact@v3
with:
name: conformance-results
path: |
./results/*
path: ${{ github.workspace }}/results/
8 changes: 7 additions & 1 deletion .github/workflows/periodic_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,10 @@ jobs:
# Same tests as in https://testgrid.k8s.io/presubmits-kubernetes-blocking#pull-kubernetes-e2e-kind&width=20
- name: Run e2e tests
run: |
bin/hydrophone --parallel 25 --skip '\[Serial\]|\[Slow\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]|PodSecurityPolicy|LoadBalancer|load.balancer|Simple.pod.should.support.exec.through.an.HTTP.proxy|subPath.should.support.existing|NFS|nfs|inline.execution.and.attach|should.be.rejected.when.no.endpoints.exist'
bin/hydrophone --parallel 25 --skip '\[Serial\]|\[Slow\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]|PodSecurityPolicy|LoadBalancer|load.balancer|Simple.pod.should.support.exec.through.an.HTTP.proxy|subPath.should.support.existing|NFS|nfs|inline.execution.and.attach|should.be.rejected.when.no.endpoints.exist' --output-dir ${{ github.workspace }}/results/
- name: Archive conformance results
uses: actions/upload-artifact@v3
with:
name: conformance-results
path: ${{ github.workspace }}/results/
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,10 @@ jobs:
- name: Run a single focused test
run: |
bin/hydrophone --focus 'Simple pod should contain last line of the log'
bin/hydrophone --focus 'Simple pod should contain last line of the log' --output-dir ${{ github.workspace }}/results/
- name: Archive conformance results
uses: actions/upload-artifact@v3
with:
name: conformance-results
path: ${{ github.workspace }}/results/

0 comments on commit 6541221

Please sign in to comment.