diff options
author | Chris Packham <judge.packham@gmail.com> | 2020-08-23 11:56:20 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2020-08-24 20:18:44 +1200 |
commit | d52c897a719badfb503ef1d9c157728d9bc4593a (patch) | |
tree | dd42942f9f0151d007a09f97dab66a7895837d82 /.github | |
parent | 0a4bed1a92ebc52ff31b29672b39aca4ad223f62 (diff) | |
download | crosstool-ng-d52c897a719badfb503ef1d9c157728d9bc4593a.tar.gz crosstool-ng-d52c897a719badfb503ef1d9c157728d9bc4593a.tar.bz2 crosstool-ng-d52c897a719badfb503ef1d9c157728d9bc4593a.zip |
CI: upload build logs as artifacts
Upload the config.log from building ct-ng as well as build.log and
.config from the toolchain builds.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
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() }} |