From ae0f5e62e3a18a634ea72462b4608e485070c2c2 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 23 Dec 2021 12:36:43 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2007af19..eca3bd8d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -180,21 +180,10 @@ jobs: $pip install --upgrade pip $pipoptions $pip install wheel $pipoptions - - name: Windows Install PyInstaller - if: matrix.goal != 'test' && matrix.gamos == 'windows' - shell: powershell - run: | - & "C:\Program Files\Git\bin\git.exe" clone https://github.com/pyinstaller/pyinstaller.git - cd pyinstaller - Remove-Item PyInstaller\bootloader\*\* - cd bootloader - c:\python\python.exe ./waf all - cd .. - c:\python\python.exe -m pip install . - - name: Mac/Linux Install PyInstaller - if: matrix.goal != 'test' && matrix.gamos != 'windows' + if: matrix.goal != 'test' run: | + set +e git clone https://github.com/pyinstaller/pyinstaller.git cd pyinstaller # remove pre-compiled bootloaders so we fail if bootloader compile fails @@ -204,6 +193,7 @@ jobs: TARGETARCH="--target-arch=32bit" fi $python ./waf all $TARGETARCH + cat build\config.log cd .. $pip install .