mirror of https://github.com/VLSIDA/OpenRAM.git
Archive failed runs on the same server
This commit is contained in:
parent
30e085ccc2
commit
a43ecee5b1
|
|
@ -37,7 +37,8 @@ jobs:
|
||||||
make -k -j 48
|
make -k -j 48
|
||||||
- name: Archive
|
- name: Archive
|
||||||
if: ${{ failure() }}
|
if: ${{ failure() }}
|
||||||
uses: actions/upload-artifact@v2
|
run: |
|
||||||
with:
|
export ARCHIVE_DIR="/tmp/github_runner_fail_${{ github.run_id }}_${{ github.run_attempt }}"
|
||||||
name: Regress Archives
|
mkdir -p $ARCHIVE_DIR
|
||||||
path: ${{ github.workspace }}/compiler/tests/results/*
|
cp -r ${{ github.workspace }}/compiler/tests/results/* $ARCHIVE_DIR
|
||||||
|
echo "Files of this run are located in $ARCHIVE_DIR"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue