From c97544cda3807e4948ee4dad2bae6162921b014e Mon Sep 17 00:00:00 2001 From: snowykami Date: Thu, 3 Oct 2024 02:18:47 +0800 Subject: [PATCH] =?UTF-8?q?:sparkles:=20=E9=99=8D=E4=BD=8Epython=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E4=BE=9D=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/nuitka-compile.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nuitka-compile.yml b/.github/workflows/nuitka-compile.yml index 62dd97c..dec08b0 100644 --- a/.github/workflows/nuitka-compile.yml +++ b/.github/workflows/nuitka-compile.yml @@ -10,10 +10,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest, windows-latest ] - arch: [ x64, x86, arm64 ] - exclude: - - os: ubuntu-latest - arch: x86 + arch: [ x64, arm64 ] runs-on: ${{ matrix.os }} @@ -24,9 +21,11 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: '3.11' # Version range or exact version of a Python version to use, using SemVer's version range syntax + python-version: '3.11' architecture: ${{ matrix.arch }} cache: 'pip' + cache-dependency-path: | + **/requirements*.txt - name: Install Dependencies