Skip to content

Commit

Permalink
Merge branch 'master' into itest-infra-refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeykiselev authored Sep 13, 2024
2 parents 4ce1485 + 5b9d8b2 commit b6d3533
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,13 @@ jobs:
- name: Tests
run: make smoke

- name: Upload smoke tests logs
- name: Upload smoke tests logs and configs
uses: actions/upload-artifact@v4
if: failure()
with:
name: smoke_itest_logs
path: build/logs/
name: smoke_itest_logs_and_configs
path: |
build/logs/
build/config/
if-no-files-found: warn
retention-days: 5
8 changes: 5 additions & 3 deletions .github/workflows/itests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,13 @@ jobs:
- name: Tests
run: make itest

- name: Upload itest logs
- name: Upload itest logs and configs
uses: actions/upload-artifact@v4
if: failure()
with:
name: itest_logs
path: build/logs/
name: itest_logs_and_configs
path: |
build/logs/
build/config/
if-no-files-found: warn
retention-days: 5
8 changes: 5 additions & 3 deletions .github/workflows/itests_race.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@ jobs:
- name: Tests
run: make itest-race

- name: Upload itest logs
- name: Upload itest logs and configs
uses: actions/upload-artifact@v4
if: failure()
with:
name: itest_logs
path: build/logs/
name: itest_logs_and_configs
path: |
build/logs/
build/config/
if-no-files-found: warn
retention-days: 5

0 comments on commit b6d3533

Please sign in to comment.