Skip to content

Commit

Permalink
hotfix: save temporary files (#894)
Browse files Browse the repository at this point in the history
* save temporary files

* save out
  • Loading branch information
daisieh authored Nov 29, 2024
1 parent f7eb9c4 commit dc153d9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/candig-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ jobs:
- name: Save docker container logs
if: always()
run: ./print_logs.sh > tmp/container_logs.txt 2>&1
- name: Save any intermediate files in containers
if: always()
run: |
mkdir tmp/ingest
docker cp candigv2_candig-ingest_1:/home/candig/tmp tmp/ingest 2>&1
mkdir tmp/index
docker cp candigv2_htsget_1:/home/candig/tmp tmp/index 2>&1
- name: Save vault audit logs
if: always()
run: docker cp candigv2_vault-runner_1:/vault/vault-audit.log tmp/vault_audit.log 2>&1
Expand All @@ -79,3 +86,5 @@ jobs:
tmp/progress.txt
tmp/container_logs.txt
tmp/vault_audit.log
tmp/ingest
tmp/index

0 comments on commit dc153d9

Please sign in to comment.