Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jay0lee authored Sep 26, 2022
1 parent 5ced78b commit c8df0d0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,13 @@ jobs:
"${PYTHON}" -m pip install --upgrade pip
"${PYTHON}" -m pip install --upgrade wheel
"${PYTHON}" -m pip install --upgrade setuptools
- name: Install pip requirements
run: |
set +e
"${PYTHON}" -m pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 "${PYTHON}" -m pip install -U --force-reinstall
"${PYTHON}" -m pip install --upgrade -r requirements.txt
- name: Install PyInstaller
if: matrix.goal == 'build'
run: |
Expand All @@ -320,12 +326,6 @@ jobs:
"${PYTHON}" -m pip install .
"${PYTHON}" -m PyInstaller --version
- name: Install pip requirements
run: |
set +e
"${PYTHON}" -m pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 "${PYTHON}" -m pip install -U --force-reinstall
"${PYTHON}" -m pip install --upgrade -r requirements.txt
- name: Build GYB with PyInstaller
if: matrix.goal != 'test'
run: |
Expand Down

0 comments on commit c8df0d0

Please sign in to comment.