Skip to content

Commit 9b46e47

Browse files
bors[bot]mathstuf
andauthored
Merge #787
787: gha: save `check-rust` results as artifacts r=philberty a=mathstuf 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]> Fixes: #634 Co-authored-by: Ben Boeckel <[email protected]>
2 parents 1be610a + e0d9dde commit 9b46e47

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/bootstrap.yml

+6
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

+6
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)