Skip to content

Commit

Permalink
CI: Add more Python debugging for Debian Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
DeeDeeG committed Oct 5, 2023
1 parent ca5b845 commit a8ab32c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,16 @@ jobs:
which -a python || true
echo "running 'command -V python'..."
command -V python || true
echo "running 'python --version'..."
python --version || true
echo "running 'whereis python3'..."
whereis python3
echo "running 'which -a python3'..."
which -a python3 || true
echo "running 'command -V python3'..."
command -V python3 || true
echo "running 'python3 --version'..."
python3 --version || true
- name: Install build dependencies - Linux
if: ${{ runner.os == 'Linux' }}
Expand All @@ -60,12 +64,16 @@ jobs:
which -a python || true
echo "running 'command -V python'..."
command -V python || true
echo "running 'python --version'..."
python --version || true
echo "running 'whereis python3'..."
whereis python3
echo "running 'which -a python3'..."
which -a python3 || true
echo "running 'command -V python3'..."
command -V python3 || true
echo "running 'python3 --version'..."
python3 --version || true
- name: Checkout the latest code
uses: actions/checkout@v3
Expand Down Expand Up @@ -121,12 +129,16 @@ jobs:
which -a python || true
echo "running 'command -V python'..."
command -V python || true
echo "running 'python --version'..."
python --version || true
echo "running 'whereis python3'..."
whereis python3
echo "running 'which -a python3'..."
which -a python3 || true
echo "running 'command -V python3'..."
command -V python3 || true
echo "running 'python3 --version'..."
python3 --version || true
- name: Install Pulsar Dependencies
uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd
Expand Down

0 comments on commit a8ab32c

Please sign in to comment.