Another attempt at getting py modules to install

This commit is contained in:
Simon Walton 2019-12-09 11:03:43 -08:00
parent ed84b48c55
commit c5c3f29747

View file

@ -189,7 +189,11 @@ jobs:
run: sudo apt install -y mesa-common-dev libegl1 libglvnd-dev libdouble-conversion1 libpulse0
- name: Install Python modules
shell: bash
run: $PYTHON_EXEC -m pip install boto3 PyGithub
run: |
if [ "`uname`" == Linux ]; then
$PYTHON_EXEC -m pip install setuptools
fi
$PYTHON_EXEC -m pip install boto3 PyGithub
- name: Configure CMake
working-directory: ${{runner.workspace}}/build
shell: bash