We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb19004 commit 611a04dCopy full SHA for 611a04d
2 files changed
.github/actions/pre-build/action.yml
@@ -33,8 +33,7 @@ runs:
33
run: |
34
if [ "${{ matrix.os }}" == "debian10" ]; then
35
python3 -m pip install --user --ignore-installed -U pip
36
- apt-get install --fix-missing -y sudo wget gnupg
37
- sudo -H pip3 install --ignore-installed -U conan
+ python3 -m pip install --user --ignore-installed -U conan
38
else
39
apt-get update
40
apt-get install --fix-missing -y sudo wget gnupg lsb-release
.github/actions/r3bbuild-steps/action.yml
@@ -35,5 +35,9 @@ runs:
- name: build ${{ matrix.repos }}
if: inputs.build-needed == 'true'
+ if [ "${{ matrix.os }}" == "debian10" ]; then
+ python3 -m pip install --user --ignore-installed -U pip
41
+ fi
42
cmake --build ./build -- -j ${NUM_THREADS}
43
shell: bash
0 commit comments