Changeset f3d331 in git


Ignore:
Timestamp:
Jul 6, 2020, 9:02:18 PM (3 years ago)
Author:
Matthias Koeppe <mkoeppe@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
382481672433e59bb571a5be4c03e838c77b6868
Parents:
9abf8fc98172f72207da0a32c4341bbce37c1329
git-author:
Matthias Koeppe <mkoeppe@math.ucdavis.edu>2020-07-06 12:02:18-07:00
git-committer:
Matthias Koeppe <mkoeppe@math.ucdavis.edu>2020-07-06 12:04:59-07:00
Message:
.github/workflows/ci-sage.yml [cygwin]: Work around errors with tar -c --remove-files for the log artifact
File:
1 edited

Legend:

Unmodified
Added
Removed
  • .github/workflows/ci-sage.yml

    r9abf8f rf3d331  
    168168      shell: bash
    169169      run: |
    170         mkdir -p "artifacts/$LOGS_ARTIFACT_NAME"; for a in local/var/tmp/sage/build/*; do if [ -d $a ]; then tar -c --remove-files -f "artifacts/$LOGS_ARTIFACT_NAME/$(basename $a).tar" $a; fi; done; cp -r logs/*  "artifacts/$LOGS_ARTIFACT_NAME"
     170        mkdir -p "artifacts/$LOGS_ARTIFACT_NAME"; for a in local/var/tmp/sage/build/*; do if [ -d $a ]; then tar -c --remove-files -f "artifacts/$LOGS_ARTIFACT_NAME/$(basename $a).tar" $a || tar -c --ignore-failed-read -f "artifacts/$LOGS_ARTIFACT_NAME/$(basename $a)-save.tar" $a ; fi; done; cp -r logs/*  "artifacts/$LOGS_ARTIFACT_NAME"
    171171      if: always()
    172172    - uses: actions/upload-artifact@v2
Note: See TracChangeset for help on using the changeset viewer.