Browse Source

Add uploading config.log artifact on CI failure

master
Samuel Thibault 3 years ago
parent
commit
c5696f5695
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      .github/workflows/ci.yml

+ 6
- 0
.github/workflows/ci.yml View File

@@ -74,6 +74,12 @@ jobs:
run: ./autogen.sh ; chmod -x INSTALL m4/*.m4
- name: configure
run: ${{ matrix.configflags }} ./configure ${{ matrix.config }}
- name: Store the config
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: config-${{ matrix.sanitizer }}.log
path: config.log
- name: make
run: ${{ matrix.build_env }} make
- name: make check

Loading…
Cancel
Save