mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 03:22:27 +02:00
Use pip directly
This commit is contained in:
parent
ff29157802
commit
1d0d471865
1 changed files with 7 additions and 6 deletions
13
.github/workflows/cmake.yml
vendored
13
.github/workflows/cmake.yml
vendored
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue