Use pip directly

This commit is contained in:
Simon Walton 2019-12-03 14:12:46 -08:00
parent ff29157802
commit 1d0d471865

View file

@ -129,18 +129,19 @@ jobs:
fetch-depth: 1
- name: Install apt packages (Linux)
if: matrix.os == 'ubuntu-latest'
run: sudo apt install -y python3-setuptools-scm mesa-common-dev libegl1 libglvnd-dev libdouble-conversion1 libpulse0
run: sudo apt install -y mesa-common-dev libegl1 libglvnd-dev libdouble-conversion1 libpulse0
- name: Install python modules
run: $PYTHON_EXEC -m pip install boto3 PyGithub
shell: bash
run: |
uname
echo '${{ toJson(env) }}'
pip install boto3 PyGithub
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake
working-directory: ${{runner.workspace}}/build
run: |
echo '${{ toJson(env) }}'
uname
cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCLIENT_ONLY:BOOLEAN=$CLIENT_ONLY $CMAKE_EXTRA
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCLIENT_ONLY:BOOLEAN=$CLIENT_ONLY $CMAKE_EXTRA
# macOS
- name: Build Console (macOS)
if: matrix.os == 'macOS-latest'