Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
Comment archive test logs and call destroy-docker
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Ethernal committed Nov 20, 2023
1 parent 8bf1ebf commit c17ba6e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ jobs:
id: run_e2e_failure
run: echo "test_output=false" >> $GITHUB_OUTPUT

- name: Archive test logs
if: always()
uses: actions/upload-artifact@v3
with:
name: e2e-logs
path: e2e-logs-*/
retention-days: 30
# TODO: Uncomment when we establish writing to log files in E2E framework
# - name: Archive test logs
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: e2e-logs
# path: e2e-logs-*/
# retention-days: 30
2 changes: 1 addition & 1 deletion test/test-cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ func (t *testCluster) start() ([]byte, error) {

// stop stop and destroys running Docker containers
func (t *testCluster) stop() ([]byte, error) {
return exec.Command("make", "stop-docker").CombinedOutput()
return exec.Command("make", "destroy-docker").CombinedOutput()
}

0 comments on commit c17ba6e

Please sign in to comment.