Skip to content

Commit

Permalink
DEBUGGING
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisburr committed Sep 28, 2023
1 parent 88760df commit 54089f5
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 @@ -53,11 +53,16 @@ jobs:
if: ${{ failure() }}
run: |
mkdir -p /tmp/service-logs
docker logs diracx > /tmp/service-logs/diracx.log
docker logs diracx 2>&1 | tee /tmp/service-logs/diracx.log
cd /tmp/DIRACRepo
./integration_tests.py logs --no-follow --lines 1000 > /tmp/service-logs/dirac.log
./integration_tests.py logs --no-follow --lines 1000 2>&1 | tee /tmp/service-logs/dirac.log
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: serivce-logs
path: /tmp/service-logs/
- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true

0 comments on commit 54089f5

Please sign in to comment.