Skip to content

Commit

Permalink
feat: add container logs to CS artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
raits committed Nov 11, 2024
1 parent cd18eed commit fe9bdf2
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,19 @@ jobs:
name: Central Server system test
path: src/central-server/admin-service/ui-system-test/build/test-results/**/TEST-*.xml
reporter: java-junit
- name: Upload CS screenshots
- name: Fix ui-system-test build dir permissions
run: sudo chown -R $USER src/central-server/admin-service/ui-system-test/build/cs-container-logs/ && sudo chown -R $USER src/central-server/admin-service/ui-system-test/build/ca-container-logs/
if: always()
- name: Upload CS report
id: cs-artifacts-step
if: failure()
uses: actions/upload-artifact@v4
if: always()
with:
name: CS System Test screenshots
path: src/central-server/admin-service/ui-system-test/build/reports/test-automation/selenide-failures/*.png
name: CS System Test report
path: |
src/central-server/admin-service/ui-system-test/cs-container-logs/
src/central-server/admin-service/ui-system-test/ca-container-logs/
src/central-server/admin-service/ui-system-test/reports/test-automation/selenide-failures/*.png
- name: Load test report history
uses: actions/checkout@v4
if: always()
Expand Down

0 comments on commit fe9bdf2

Please sign in to comment.