Skip to content

Commit

Permalink
CI: Print info about install Python version(s) on Debian Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
DeeDeeG committed Oct 3, 2023
1 parent cc85a0e commit c2f5dc8
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,34 @@ jobs:
container: ${{ matrix.image }}

steps:
- name: Printing Python info to terminal for debugging purposes - Linux
if: ${{ runner.os == 'Linux' }}
run: |
echo "running 'whereis python'..."
whereis python
echo "running 'which -a python'..."
which -a python
echo "running 'whereis python3'..."
whereis python3
echo "running 'which -a python3'..."
which -a python3
- name: Install git and python3 - Linux
if: ${{ runner.os == 'Linux' }}
run: apt-get update && apt-get install -y git python3

- name: Printing Python info to terminal for debugging purposes - Linux
if: ${{ runner.os == 'Linux' }}
run: |
echo "running 'whereis python'..."
whereis python
echo "running 'which -a python'..."
which -a python
echo "running 'whereis python3'..."
whereis python3
echo "running 'which -a python3'..."
which -a python3
- name: Checkout the latest code
uses: actions/checkout@v3

Expand Down Expand Up @@ -79,6 +103,18 @@ jobs:
if: ${{ runner.os == 'Linux' }}
run: npm install -g yarn

- name: Printing Python info to terminal for debugging purposes - Linux
if: ${{ runner.os == 'Linux' }}
run: |
echo "running 'whereis python'..."
whereis python
echo "running 'which -a python'..."
which -a python
echo "running 'whereis python3'..."
whereis python3
echo "running 'which -a python3'..."
which -a python3
- name: Install Pulsar Dependencies
uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd
with:
Expand Down

0 comments on commit c2f5dc8

Please sign in to comment.