From bf5bbf24f2f50a296b89be7389c0b4f7b6cdd2ea Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Sun, 7 Jul 2024 21:49:39 +0800 Subject: [PATCH] Fix CI --- .github/workflows/test-pack-lib.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-pack-lib.yml b/.github/workflows/test-pack-lib.yml index 55834fbd..f84aae8c 100644 --- a/.github/workflows/test-pack-lib.yml +++ b/.github/workflows/test-pack-lib.yml @@ -23,7 +23,6 @@ jobs: name: "Pack Lib Test (${{ matrix.lib }} for ${{ matrix.os.name }}-${{ matrix.os.arch }})" runs-on: ${{ matrix.os.runs-on }} timeout-minutes: 120 - if: matrix.os.name != 'windows' || matrix.lib != 'pkg-config' strategy: matrix: os: @@ -44,6 +43,12 @@ jobs: - zlib - bzip2 - gmp + exclude: + - os: + runs-on: windows-latest + arch: "x86_64" + lib: pkg-config + lib: pkg-config fail-fast: false steps: - name: "Checkout" @@ -92,5 +97,5 @@ jobs: - name: "Upload packed lib (${{ matrix.lib }} for ${{ matrix.os.name }}-${{ matrix.os.arch }})" uses: actions/upload-artifact@v2 with: - path: dist/${{ matrix.lib }}-${{ matrix.os.arch }}-${{ matrix.os.name }}.tar.gz + path: dist/${{ matrix.lib }}-${{ matrix.os.arch }}-${{ matrix.os.name }}.txz name: ${{ matrix.lib }}-${{ matrix.os.arch }}-${{ matrix.os.name }} \ No newline at end of file