mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 19:14:59 +02:00
Another attempt at getting py modules to install
This commit is contained in:
parent
ed84b48c55
commit
c5c3f29747
1 changed files with 5 additions and 1 deletions
6
.github/workflows/master_build.yml
vendored
6
.github/workflows/master_build.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue