This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch github_actions_take_2 in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit a34de27344fadad3c70b50fd3d6c82861c1be22a Author: Tomaz Muraus <[email protected]> AuthorDate: Sun Dec 13 14:20:56 2020 +0100 Print env info. --- .github/workflows/main.yml | 50 +++++++++++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 20 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 57ebaaa..e7d8440 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -132,23 +132,33 @@ jobs: python_version: [3.7] steps: - - uses: actions/checkout@master - with: - fetch-depth: 1 - - name: Use Python ${{ matrix.python_version }} - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python_version }} - - name: Install OS / deb dependencies - run: | - sudo DEBIAN_FRONTEND=noninteractive apt-get install -yq graphviz gcc libvirt-dev - - name: Install Python Dependencies - run: | - pip install "tox==3.20.1" - - name: Build Docs - run: | - tox -e docs-travis - - name: Trigger ReadTheDocs build - run: | - pip install requests - python ./contrib/trigger_rtd_build.py + - name: Print Environment Info + id: printenv + run: | + printenv | sort + + - uses: actions/checkout@master + with: + fetch-depth: 1 + + - name: Use Python ${{ matrix.python_version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python_version }} + + - name: Install OS / deb dependencies + run: | + sudo DEBIAN_FRONTEND=noninteractive apt-get install -yq graphviz gcc libvirt-dev + + - name: Install Python Dependencies + run: | + pip install "tox==3.20.1" + + - name: Build Docs + run: | + tox -e docs-travis + + - name: Trigger ReadTheDocs build + run: | + pip install requests + python ./contrib/trigger_rtd_build.py
