diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/continuous-integration-workflow.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index e2d724e5..33e00d6f 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -28,6 +28,12 @@ jobs: ./bootstrap ./configure --enable-local make + - name: "upload config.log" + uses: actions/upload-artifact@v2 + with: + name: config.log + path: config.log + if: ${{ always() }} - name: "build ${{ matrix.sample }}" run: | mkdir -p src @@ -40,3 +46,11 @@ jobs: echo 'CT_LOG_ALL=y' >>.config echo 'CT_LOG_LEVEL_MAX="ALL"' >>.config ./ct-ng build + - name: "upload log" + uses: actions/upload-artifact@v2 + with: + name: "${{ matrix.sample }}.log" + path: | + build.log + .config + if: ${{ always() }} |