From cc13f3e10d3c9526910d3c6b3d2a09f1854b3d9c Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Tue, 21 Dec 2021 12:26:50 +0800 Subject: [PATCH] GHA CI: Don't upload built artifacts for dynamic linking builds As those won't work on testers system unless they install *all* and same version of the dependent libraries too. PR #15870. --- .github/workflows/ci_ubuntu.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci_ubuntu.yaml b/.github/workflows/ci_ubuntu.yaml index 78e4ae547..f34adc5e9 100644 --- a/.github/workflows/ci_ubuntu.yaml +++ b/.github/workflows/ci_ubuntu.yaml @@ -90,7 +90,6 @@ jobs: - name: Prepare build artifacts run: | mkdir upload - mv qbittorrent upload mkdir upload/cmake cp build/compile_commands.json upload/cmake mkdir upload/cmake/libtorrent @@ -99,5 +98,5 @@ jobs: - name: Upload build artifacts uses: actions/upload-artifact@v2 with: - name: qBittorrent-CI_ubuntu-20.04-x64_${{ matrix.qbt_gui }}_libtorrent-${{ matrix.libt_version }}_Qt-${{ matrix.qt_version }} + name: build-info_ubuntu-20.04-x64_${{ matrix.qbt_gui }}_libtorrent-${{ matrix.libt_version }}_Qt-${{ matrix.qt_version }} path: upload