Skip to content

Commit e0d9dde

Browse files
committed
gha: save check-rust results as artifacts
They will stick around for 90 days (as per GitHub default limits). https://docs.github.com/en/actions/advanced-guides/storing-workflow-data-as-artifacts Signed-off-by: Ben Boeckel <[email protected]>
1 parent 1be610a commit e0d9dde

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/bootstrap.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ jobs:
4747
run: |
4848
cd gccrs-build; \
4949
make check-rust
50+
- name: Archive check-rust results
51+
uses: actions/upload-artifact@v2
52+
with:
53+
name: check-rust-logs
54+
path: |
55+
gccrs-build/gcc/testsuite/rust/
5056
- name: Check regressions
5157
run: |
5258
cd gccrs-build; \

.github/workflows/ccpp.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@ jobs:
5252
run: |
5353
cd gccrs-build; \
5454
make check-rust
55+
- name: Archive check-rust results
56+
uses: actions/upload-artifact@v2
57+
with:
58+
name: check-rust-logs
59+
path: |
60+
gccrs-build/gcc/testsuite/rust/
5561
- name: Check regressions
5662
run: |
5763
cd gccrs-build; \

0 commit comments

Comments
 (0)