Skip to content

Commit

Permalink
CI: Fix and expand Python info logging for Debian Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
DeeDeeG committed Oct 3, 2023
1 parent c2f5dc8 commit 15a5366
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,15 @@ jobs:
echo "running 'whereis python'..."
whereis python
echo "running 'which -a python'..."
which -a python
which -a python || true
echo "running 'command -V python'..."
command -V python
echo "running 'whereis python3'..."
whereis python3
echo "running 'which -a python3'..."
which -a python3
which -a python3 || true
echo "running 'command -V python3'..."
command -V python3
- name: Install git and python3 - Linux
if: ${{ runner.os == 'Linux' }}
Expand All @@ -53,11 +57,15 @@ jobs:
echo "running 'whereis python'..."
whereis python
echo "running 'which -a python'..."
which -a python
which -a python || true
echo "running 'command -V python'..."
command -V python
echo "running 'whereis python3'..."
whereis python3
echo "running 'which -a python3'..."
which -a python3
which -a python3 || true
echo "running 'command -V python3'..."
command -V python3
- name: Checkout the latest code
uses: actions/checkout@v3
Expand Down Expand Up @@ -109,11 +117,15 @@ jobs:
echo "running 'whereis python'..."
whereis python
echo "running 'which -a python'..."
which -a python
which -a python || true
echo "running 'command -V python'..."
command -V python
echo "running 'whereis python3'..."
whereis python3
echo "running 'which -a python3'..."
which -a python3
which -a python3 || true
echo "running 'command -V python3'..."
command -V python3
- name: Install Pulsar Dependencies
uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd
Expand Down

0 comments on commit 15a5366

Please sign in to comment.