Workflow: Disable spinning progress indicator.

This commit is contained in:
imi415 2022-08-08 21:33:48 +08:00
parent 29f70fe2e8
commit 749053df1e
Signed by: imi415
GPG Key ID: 17F01E106F9F5E0A
1 changed files with 4 additions and 1 deletions

View File

@ -25,6 +25,7 @@ jobs:
run: |
echo CT_LOCAL_TARBALLS_DIR="${{ github.workspace }}/tarballs" >> defconfig
echo CT_PREFIX_DIR="${CT_TOP_DIR}/${CT_HOST:+HOST-${CT_HOST}/}${CT_TARGET}" >> defconfig
echo CT_LOG_PROGRESS_BAR=n >> defconfig
ct-ng defconfig
- name: "Tarball cache management"
uses: actions/cache@v3
@ -41,5 +42,7 @@ jobs:
uses: "actions/upload-artifact@v3"
with:
name: "toolchain archive"
path: "build/sh-unknown-elf-${{ github.sha }}.tar.gz"
path: |
"build/sh-unknown-elf-${{ github.sha }}.tar.gz"
"build/build.log"
retention-days: 30