Skip to content

Commit

Permalink
Setup python3 for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ClausKlein committed Aug 31, 2023
1 parent 40113a7 commit adfa3e2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ jobs:
# cache: 'pip' # caching pip dependencies
# # pip but doesn't exist on disk: /home/runner/.cache/pip

- name: Setup python3
- run: |
sudo python -m pip install --upgrade pip
sudo pip install -U -r requirements.txt
sudo python3 -m pip install --upgrade pip
sudo python3 -m pip install -U -r requirements.txt
# /root/.cache/pip/
- name: Setup Cpp
Expand All @@ -72,7 +73,7 @@ jobs:
run: |
which cmake ninja
cmake --version
ninja --version
cmake --version
cmake -G Ninja -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.BUILD_TYPE}}
- name: Build
Expand Down

0 comments on commit adfa3e2

Please sign in to comment.