We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14b0472 commit e824a08Copy full SHA for e824a08
.github/workflows/ccpp.yml
@@ -85,7 +85,7 @@ jobs:
85
exit 0; \
86
fi
87
88
- build-and-check-older-gcc:
+ build-and-check-gcc-48:
89
90
runs-on: ubuntu-18.04
91
steps:
@@ -126,3 +126,26 @@ jobs:
126
shell: bash
127
run: |
128
make -C gccrs-build -j $(nproc)
129
+
130
+ - name: Run Tests
131
+ run: |
132
+ cd gccrs-build; \
133
+ make check-rust
134
135
+ - name: Archive check-rust results
136
+ uses: actions/upload-artifact@v2
137
+ with:
138
+ name: check-rust-logs-4.8
139
+ path: |
140
+ gccrs-build/gcc/testsuite/rust/
141
142
+ - name: Check regressions
143
144
145
+ if grep -e "unexpected" -e "unresolved" gcc/testsuite/rust/rust.sum;\
146
+ then \
147
+ echo "some tests are not correct"; \
148
+ exit 1; \
149
+ else \
150
+ exit 0; \
151
+ fi
0 commit comments