actions take 67

This commit is contained in:
Jay Lee
2020-12-04 12:02:06 -05:00
parent 943d327975
commit a0cff87e5f
4 changed files with 7 additions and 12 deletions

View File

@@ -121,6 +121,13 @@ jobs:
echo "pip=$pip" >> $GITHUB_ENV
echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >> $GITHUB_ENV
- name: Install pip requirements
run: |
cd src
$pip install --upgrade pip
$pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 $pip install -U
$pip install --upgrade -r requirements.txt
- name: Build GAM with PyInstaller
if: matrix.goal != 'test'
run: |