Merge pull request #36 from God-2077/dev #17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Nuitka Package and Release | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'package/nuitka_config.yml' | |
| jobs: | |
| package-and-upload: | |
| # runs-on: windows-latest | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest,ubuntu-24.04-arm,windows-latest] # windows-11-arm没有对应的 Python | |
| env: | |
| PYTHON_VERSION: '3.10' | |
| NUITKA_CACHE_DIR: ${{ github.workspace }}/nuitka-cache | |
| UPXVERSION: '5.0.1' | |
| # 添加必要的权限 | |
| permissions: | |
| contents: write # 允许创建发布和上传资源 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set Timezone to China Standard Time on Windows | |
| if: ${{ runner.os == 'Windows' }} | |
| run: tzutil /s "China Standard Time" | |
| shell: pwsh | |
| - name: Set Timezone to China Standard Time on Linux | |
| if: ${{ runner.os == 'Linux' }} | |
| run: sudo timedatectl set-timezone Asia/Shanghai | |
| - name: Generate version tag on Windows | |
| if: ${{ runner.os == 'Windows' }} | |
| run: | | |
| # 使用 UTC 时间确保一致性 | |
| $date = (Get-Date).ToUniversalTime().ToString("yy.MM.dd") | |
| $tag = "v$date" | |
| $release = "Release $date" | |
| echo "VERSION_TAG=$tag" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
| echo "RELEASE_NAME=$release" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
| shell: pwsh | |
| - name: Generate version tag on Linux | |
| if: ${{ runner.os == 'Linux' }} | |
| run: | | |
| # 使用 UTC 时间确保一致性 | |
| DATE=$(date -u +%y.%m.%d) | |
| echo "VERSION_TAG=v$DATE" >> $GITHUB_ENV | |
| echo "RELEASE_NAME=Release $DATE" >> $GITHUB_ENV | |
| shell: bash | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: Cache UPX | |
| id: cache-upx | |
| uses: actions/cache@v4 | |
| with: | |
| path: upx | |
| key: ${{ runner.os }}-${{ runner.arch }}-upx-v${{ env.UPXVERSION }} | |
| restore-keys: | | |
| ${{ runner.os }}-${{ runner.arch }}-upx- | |
| - name: Create UPX directory | |
| if: ${{ steps.cache-upx.outputs.cache-hit != 'true' }} | |
| run: mkdir -p ./upx | |
| - name: Install UPX on Linux | |
| if: ${{ runner.os == 'Linux' && steps.cache-upx.outputs.cache-hit != 'true' }} | |
| run: | | |
| UPX_URL="https://github.com/upx/upx/releases/download/v${{ env.UPXVERSION }}/upx-${{ env.UPXVERSION }}-${{ runner.arch == 'X64' && 'amd64' || 'arm64' }}_linux.tar.xz" | |
| curl -L "$UPX_URL" -o upx.tar.xz | |
| tar -xf upx.tar.xz -C ./upx --strip-components=1 | |
| chmod +x ./upx/upx | |
| shell: bash | |
| - name: Install UPX on Windows | |
| if: ${{ runner.os == 'Windows' && steps.cache-upx.outputs.cache-hit != 'true' }} | |
| run: | | |
| $arch = if (("${{ runner.arch }}" -eq "amd64") -or ("${{ runner.arch }}" -eq "X64")) { "win64" } else { "win32" } | |
| $upxVersion = "${{ env.UPXVERSION }}" | |
| $upxUrl = "https://github.com/upx/upx/releases/download/v$upxVersion/upx-$upxVersion-$arch.zip" | |
| Invoke-WebRequest -Uri $upxUrl -OutFile upx.zip | |
| Expand-Archive -Path upx.zip -DestinationPath ./upx -Force | |
| # Windows 版本的 UPX 解压后在子目录中,需要移动到根目录 | |
| Move-Item -Path "./upx/upx-$upxVersion-$arch/*" -Destination ./upx -Force | |
| shell: pwsh | |
| - name: Verify UPX installation | |
| run: | | |
| ./upx/upx --version | |
| shell: bash | |
| - name: get pip cache dir on Windows | |
| if: ${{ runner.os == 'Windows' }} | |
| id: pip-cache-dir-window | |
| run: echo "pip-cache-dir=$(pip cache dir)" >> $env:GITHUB_OUTPUT | |
| - name: get pip cache dir on Linux | |
| if: ${{ runner.os == 'Linux' }} | |
| id: pip-cache-dir-linux | |
| run: echo "pip-cache-dir=$(pip cache dir)" >> $GITHUB_OUTPUT | |
| - name: pip cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ runner.os == 'Windows' && steps.pip-cache-dir-window.outputs.pip-cache-dir || steps.pip-cache-dir-linux.outputs.pip-cache-dir }} | |
| key: ${{ runner.os }}-${{ runner.arch }}-pip-${{ github.event.inputs.test && hashFiles(github.event.inputs.config_path) || hashFiles('package/nuitka_build.py') }} | |
| restore-keys: | | |
| ${{ runner.os }}-${{ runner.arch }}-pip- | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install nuitka pyyaml ordered-set==4.1.0 wheel==0.38.4 zstandard==0.20.0 | |
| # - name: insatll mingw | |
| # run: | | |
| # mkdir C:\Users\%username%\AppData\Local\Nuitka\Nuitka\Cache\downloads\gcc\x86_64\14.2.0posix-19.1.1-12.0.0-msvcrt-r2 | |
| # curl -o C:\Users\%username%\AppData\Local\Nuitka\Nuitka\Cache\downloads\gcc\x86_64\14.2.0posix-19.1.1-12.0.0-msvcrt-r2\winlibs-x86_64-posix-seh-gcc-14.2.0-llvm-19.1.1-mingw-w64msvcrt-12.0.0-r2.zip https://github.com/brechtsanders/winlibs_mingw/releases/download/14.2.0posix-19.1.1-12.0.0-msvcrt-r2/winlibs-x86_64-posix-seh-gcc-14.2.0-llvm-19.1.1-mingw-w64msvcrt-12.0.0-r2.zip | |
| # tar -xf C:\Users\%username%\AppData\Local\Nuitka\Nuitka\Cache\downloads\gcc\x86_64\14.2.0posix-19.1.1-12.0.0-msvcrt-r2\winlibs-x86_64-posix-seh-gcc-14.2.0-llvm-19.1.1-mingw-w64msvcrt-12.0.0-r2.zip -C C:\Users\%username%\AppData\Local\Nuitka\Nuitka\Cache\downloads\gcc\x86_64\14.2.0posix-19.1.1-12.0.0-msvcrt-r2\ | |
| # - name: Fix Python encoding (Windows) | |
| # run: | | |
| # # 设置Python使用UTF-8编码 | |
| # [System.Environment]::SetEnvironmentVariable('PYTHONUTF8', '1', 'Process') | |
| # # 设置控制台编码为UTF-8 | |
| # chcp.com 65001 | |
| - name: Install dependencies on Linux | |
| if: ${{ runner.os == 'Linux' }} | |
| run: | | |
| sudo apt-get update -y | |
| sudo apt-get install -y ccache | |
| echo 'export PATH="/usr/lib/ccache:$PATH"' >> ~/.bashrc | |
| source ~/.bashrc | |
| sudo apt-get install -y patchelf | |
| - name: Cache Nuitka cache directory | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ env.NUITKA_CACHE_DIR }} | |
| key: nuitka-${{ runner.os }}-${{ runner.arch }}-python-${{ env.PYTHON_VERSION }}-nuitka-${{ github.event.inputs.test && hashFiles(github.event.inputs.config_path) || hashFiles('package/nuitka_build.py') }} | |
| restore-keys: | | |
| nuitka-${{ runner.os }}-${{ runner.arch }}-python-${{ env.PYTHON_VERSION }}- | |
| nuitka-${{ runner.os }}-${{ runner.arch }}- | |
| - name: Run packaging script on Windows | |
| if: ${{ runner.os == 'Windows' }} | |
| run: | | |
| # 设置Python使用UTF-8编码 | |
| [System.Environment]::SetEnvironmentVariable('PYTHONUTF8', '1', 'Process') | |
| # 设置控制台编码为UTF-8 | |
| chcp.com 65001 | |
| python ./package/nuitka_build.py ./package/nuitka_config.yml | |
| - name: Run packaging script on Linux | |
| if: ${{ runner.os == 'Linux' }} | |
| run: | | |
| python ./package/nuitka_build.py ./package/nuitka_config.yml | |
| # 按理说不用检测 Release 是否已经发布,运行 | |
| - name: Check if Release exists | |
| id: check_release | |
| uses: actions/github-script@v6 | |
| with: | |
| script: | | |
| const tagName = process.env.TAG_NAME; | |
| try { | |
| const response = await github.rest.repos.getReleaseByTag({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| tag: tagName | |
| }); | |
| const releaseId = response.data.id; | |
| console.log(`Release '${tagName}' already exists with ID: ${releaseId}`); | |
| core.setOutput('exists', 'true'); | |
| core.setOutput('release_id', releaseId); | |
| } catch (error) { | |
| if (error.status === 404) { | |
| console.log(`Release '${tagName}' does not exist`); | |
| core.setOutput('exists', 'false'); | |
| core.setOutput('release_id', ''); | |
| } else { | |
| core.setFailed(`Failed to check release: ${error.message}`); | |
| throw error; | |
| } | |
| } | |
| env: | |
| TAG_NAME: ${{ env.VERSION_TAG }} | |
| - name: Use Release ID | |
| if: ${{ steps.check_release.outputs.exists == 'true' }} | |
| run: | | |
| echo "Existing Release ID: ${{ steps.check_release.outputs.release_id }}" | |
| # 这里可以使用 release_id 进行更新操作 | |
| # 例如:gh release upload ${{ steps.check_release.outputs.release_id }} dist/* | |
| # 仅当Release不存在时执行创建操作 | |
| - name: Create Release | |
| if: ${{ steps.check_release.outputs.exists == 'false' }} | |
| id: create_release | |
| uses: softprops/action-gh-release@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: ${{ env.VERSION_TAG }} | |
| name: ${{ env.RELEASE_NAME }} | |
| generate_release_notes: true | |
| draft: false | |
| prerelease: false | |
| overwrite_files: true | |
| files: | | |
| dist/* | |
| - name: Upload Release Assets | |
| if: ${{ steps.check_release.outputs.exists == 'true' }} | |
| uses: xresloader/upload-to-github-release@main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| file: "./dist/*" | |
| release_id: ${{ steps.check_release.outputs.release_id }} | |
| verbose: false | |
| overwrite: true |