From c1af67d4a3c9c664d38d8a7438f36e01d637f8cf Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 22 Dec 2021 18:35:59 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c5724f32..c810310d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -168,7 +168,7 @@ jobs: "${python}" -V "${pip}" -V - - name: Build and install Python, OpenSSL and PyInstaller + - name: Build and install Python and OpenSSL if: matrix.goal == 'build' && steps.cache-primes.outputs.cache-hit != 'true' run: | set +e @@ -185,6 +185,10 @@ jobs: fi $pip install --upgrade pip $pipoptions $pip install wheel $pipoptions + + - name: Install PyInstaller + if: matrix.goal != test + run: | export url="https://codeload.github.com/pyinstaller/pyinstaller/tar.gz/${PYINSTALLER_VERSION}" echo "Downloading ${url}" curl -o pyinstaller.tar.gz --compressed "${url}" @@ -203,8 +207,6 @@ jobs: cd .. fi $pip install . - #$python setup.py install - #$pip install pyinstaller - name: Install pip requirements run: |