Temporarily disable step that seems to be transiently failing. (#10234)

This commit is contained in:
Predrag Gruevski 2023-09-05 10:55:47 -04:00 committed by GitHub
parent 5d8673a3c1
commit e34ad6fefd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,20 +31,20 @@ runs:
with: with:
python-version: ${{ inputs.python-version }} python-version: ${{ inputs.python-version }}
- uses: actions/cache@v3 # - uses: actions/cache@v3
id: cache-bin-poetry # id: cache-bin-poetry
name: Cache Poetry binary - Python ${{ inputs.python-version }} # name: Cache Poetry binary - Python ${{ inputs.python-version }}
env: # env:
SEGMENT_DOWNLOAD_TIMEOUT_MIN: "1" # SEGMENT_DOWNLOAD_TIMEOUT_MIN: "1"
with: # with:
path: | # path: |
/opt/pipx/venvs/poetry # /opt/pipx/venvs/poetry
/opt/pipx_bin/poetry # /opt/pipx_bin/poetry
# This step caches the poetry installation, so make sure it's keyed on the poetry version as well. # # This step caches the poetry installation, so make sure it's keyed on the poetry version as well.
key: bin-poetry-${{ runner.os }}-${{ runner.arch }}-py-${{ inputs.python-version }}-${{ inputs.poetry-version }} # key: bin-poetry-${{ runner.os }}-${{ runner.arch }}-py-${{ inputs.python-version }}-${{ inputs.poetry-version }}
- name: Install poetry - name: Install poetry
if: steps.cache-bin-poetry.outputs.cache-hit != 'true' # if: steps.cache-bin-poetry.outputs.cache-hit != 'true'
shell: bash shell: bash
env: env:
POETRY_VERSION: ${{ inputs.poetry-version }} POETRY_VERSION: ${{ inputs.poetry-version }}