ubuntu github actions: use pip3 instead of python 2.7 version of pip

This commit is contained in:
Thijs Wenker 2020-04-17 16:15:07 +02:00
parent 1dd843c916
commit 3a4b312b53

View file

@ -127,10 +127,10 @@ jobs:
- name: Update apt repository index
run: sudo apt update
- name: Install apt packages
run: sudo apt install -y mesa-common-dev libegl1 libglvnd-dev libdouble-conversion1 libpulse0
run: sudo apt install -y mesa-common-dev libegl1 libglvnd-dev libdouble-conversion1 libpulse0 python3-setuptools
- name: Install python modules
shell: bash
run: pip install boto3 distro PyGithub
run: pip3 install boto3 distro PyGithub
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake