diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index f26030f3..00000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: ci - -on: - push: - branches: - - 'python3.12' - -jobs: - docker: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - platforms: linux/amd64,linux/arm64 - push: true - tags: ghcr.io/${{ github.repository_owner }}/zoffline:latest diff --git a/standalone.spec b/standalone.spec index d8e5e95c..cfd04c6d 100644 --- a/standalone.spec +++ b/standalone.spec @@ -19,9 +19,6 @@ a = Analysis(['standalone.py'], win_private_assemblies=False, cipher=block_cipher, noarchive=False) -a.binaries = [x for x in a.binaries - if not os.path.dirname(x[1]).lower().startswith("c:\\program files") - and not os.path.dirname(x[1]).lower().startswith("c:\\windows")] a.datas += Tree('cdn', prefix='cdn') pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) @@ -36,7 +33,7 @@ exe = EXE(pyz, bootloader_ignore_signals=False, strip=False, upx=True, - upx_exclude=['greenlet\*.pyd'], + upx_exclude=['greenlet\\*.pyd'], runtime_tmpdir=None, console=True )