From: Joel Rosdahl Date: Sat, 22 Aug 2020 18:16:38 +0000 (+0200) Subject: build.yaml: Produce .tar.xz instead of .zip X-Git-Tag: v4.0~183 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e32de5ad16aff0a864130f71608bfd82d79bff3e;p=thirdparty%2Fccache.git build.yaml: Produce .tar.xz instead of .zip --- diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6eb654fbc..abf537a4c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -40,14 +40,14 @@ jobs: - name: Collect testdir from failed tests if: failure() - run: zip -r testdir.zip ${{ matrix.config.BUILDDIR }}/testdir + run: tar -caf testdir.tar.xz ${{ matrix.config.BUILDDIR }}/testdir - name: Upload testdir from failed tests if: failure() uses: actions/upload-artifact@v2 with: - name: ${{ matrix.config.name }} - testdir.zip - path: testdir.zip + name: ${{ matrix.config.name }} - testdir.tar.xz + path: testdir.tar.xz # These mimic the old Travis tests that are not replaced by standard_tests: specific_tests: @@ -225,12 +225,12 @@ jobs: - name: Collect testdir from failed tests if: failure() - run: zip -r testdir.zip ${{ matrix.config.BUILDDIR }}/testdir + run: tar -caf testdirs.tar.xz ${{ matrix.config.BUILDDIR }}/testdir # TODO: in case of build-and-verify-package* the BUILDDIR is set within those scripts. - name: Upload testdir from failed tests if: failure() uses: actions/upload-artifact@v2 with: - name: ${{ matrix.config.name }} - testdir.zip - path: testdir.zip + name: ${{ matrix.config.name }} - testdir.tar.xz + path: testdir.tar.xz