Skip to content

Commit

Permalink
Collect docker-compose logs during testing
Browse files Browse the repository at this point in the history
  • Loading branch information
atodorov committed Jan 18, 2024
1 parent 0ee9bcf commit 2f0351e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,17 @@ jobs:
make verify-integration
- name: Collect logs
if: always()
run: |
docker-compose -f tests/krb5/docker-compose.yml logs --no-color > /tmp/docker-compose-${{ matrix.gssapi }}-kerberos.log
- name: Upload logs
uses: actions/upload-artifact@v3
if: always()
with:
name: curl.log
path: /tmp/curl.log
name: logs
path: /tmp/*.log
if-no-files-found: ignore

- name: Submit coverage report
Expand Down

0 comments on commit 2f0351e

Please sign in to comment.