Skip to content

Commit ee4b3fe

Browse files
committed
again
1 parent 611a04d commit ee4b3fe

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/actions/pre-build/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ runs:
3333
run: |
3434
if [ "${{ matrix.os }}" == "debian10" ]; then
3535
python3 -m pip install --user --ignore-installed -U pip
36-
python3 -m pip install --user --ignore-installed -U conan
3736
else
3837
apt-get update
3938
apt-get install --fix-missing -y sudo wget gnupg lsb-release

.github/actions/r3bbuild-steps/action.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ runs:
2626
git config --global --add safe.directory $GITHUB_WORKSPACE
2727
git submodule update --init --recursive
2828
git clone https://github.com/R3BRootGroup/macros.git
29+
if [ "${{ matrix.os }}" == "debian10" ]; then
30+
python3 -m pip install --user --ignore-installed -U pip
31+
python3 -m pip install --user --ignore-installed -U conan
32+
echo "$HOME/.local/bin" >> $GITHUB_PATH
33+
fi
2934
echo ""
3035
echo "path environment variable: $PATH\n"
3136
echo ""
@@ -35,9 +40,5 @@ runs:
3540
- name: build ${{ matrix.repos }}
3641
if: inputs.build-needed == 'true'
3742
run: |
38-
if [ "${{ matrix.os }}" == "debian10" ]; then
39-
python3 -m pip install --user --ignore-installed -U pip
40-
python3 -m pip install --user --ignore-installed -U conan
41-
fi
4243
cmake --build ./build -- -j ${NUM_THREADS}
4344
shell: bash

0 commit comments

Comments
 (0)