From 0263ebda7d96aa529b6691aced044cf846cffe2a Mon Sep 17 00:00:00 2001 From: Jeremy Drake Date: Thu, 26 Aug 2021 10:27:16 -0700 Subject: [PATCH] CI: use -u (unbuffered) option to python for generate-srcinfo. It prints out as it parses each PKGBUILD, but that's never seen while the job is running. --- .github/workflows/generate-srcinfo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generate-srcinfo.yml b/.github/workflows/generate-srcinfo.yml index 1b5386ea30..286b0853cf 100644 --- a/.github/workflows/generate-srcinfo.yml +++ b/.github/workflows/generate-srcinfo.yml @@ -30,7 +30,7 @@ jobs: # XXX: we don't need the toolchains for --printsrcinfo, but makepkg-mingw complains if gcc doesn't exist touch /mingw64/bin/gcc.exe /mingw32/bin/gcc.exe /ucrt64/bin/gcc.exe /clang64/bin/clang.exe /clang32/bin/clang.exe curl --fail -L --retry 5 -o srcinfo.json "https://github.com/$GITHUB_REPOSITORY/releases/download/srcinfo-cache/srcinfo.json" - python .ci/ci-generate-srcinfo.py --time-limit 19800 mingw . srcinfo.json + python -u .ci/ci-generate-srcinfo.py --time-limit 19800 mingw . srcinfo.json - uses: actions/upload-artifact@v2 with: