diff --git a/.github/workflows/ci-examples-app.yml b/.github/workflows/ci-examples-app.yml index a37afd9367..34f3d4a9f9 100644 --- a/.github/workflows/ci-examples-app.yml +++ b/.github/workflows/ci-examples-app.yml @@ -75,10 +75,11 @@ jobs: - name: Install Lightning package & dependencies run: | # do not use `-e` because it will make both packages available since it adds `src` to `sys.path` automatically - pip install .[dev] -U -f ${TORCH_URL} -f ".wheels/" + pip install .[dev] -U -f ${TORCH_URL} -f ".wheels/" --prefer-binary pip list - name: Dump handy wheels if: github.event_name == 'push' + continue-on-error: true uses: ./.github/actions/pip-wheels with: torch-url: ${{ env.TORCH_URL }} diff --git a/.github/workflows/ci-tests-app.yml b/.github/workflows/ci-tests-app.yml index 20fc4a7ffa..09a58411fe 100644 --- a/.github/workflows/ci-tests-app.yml +++ b/.github/workflows/ci-tests-app.yml @@ -68,16 +68,18 @@ jobs: path: .wheels key: pip_wheels # to not being cleand with crone enableCrossOsArchive: true + - run: ls -lh .wheels/ - name: Switch PyTorch URL run: python -c "print('TORCH_URL=https://download.pytorch.org/whl/' + str('test/cpu/torch_test.html' if '${{matrix.release}}' == 'pre' else 'cpu/torch_stable.html'))" >> $GITHUB_ENV - name: Install package & dependencies run: | - pip install -e .[dev] -U -f ${TORCH_URL} -f ".wheels/" + pip install -e .[dev] -U -f ${TORCH_URL} -f ".wheels/" --prefer-binary pip list - name: Dump handy wheels if: github.event_name == 'push' + continue-on-error: true uses: ./.github/actions/pip-wheels with: torch-url: ${{ env.TORCH_URL }} diff --git a/.github/workflows/ci-tests-fabric.yml b/.github/workflows/ci-tests-fabric.yml index e2f7c2ca3e..a79b06f715 100644 --- a/.github/workflows/ci-tests-fabric.yml +++ b/.github/workflows/ci-tests-fabric.yml @@ -92,17 +92,19 @@ jobs: path: .wheels key: pip_wheels # to not being cleand with crone enableCrossOsArchive: true + - run: ls -lh .wheels/ - name: Switch PyTorch URL run: python -c "print('TORCH_URL=https://download.pytorch.org/whl/' + str('test/cpu/torch_test.html' if '${{matrix.release}}' == 'pre' else 'cpu/torch_stable.html'))" >> $GITHUB_ENV - name: Install package & dependencies run: | - pip install -e .[test] "pytest-timeout" -U -f ${TORCH_URL} -f ".wheels/" - pip install -r requirements/fabric/strategies.txt -f ".wheels/" + pip install -e .[test] "pytest-timeout" -U -f ${TORCH_URL} -f ".wheels/" --prefer-binary + pip install -r requirements/fabric/strategies.txt -f ".wheels/" --prefer-binary pip list - name: Dump handy wheels if: github.event_name == 'push' + continue-on-error: true uses: ./.github/actions/pip-wheels with: torch-url: ${{ env.TORCH_URL }} diff --git a/.github/workflows/ci-tests-pytorch.yml b/.github/workflows/ci-tests-pytorch.yml index c91c30a993..d2cd9cc24c 100644 --- a/.github/workflows/ci-tests-pytorch.yml +++ b/.github/workflows/ci-tests-pytorch.yml @@ -100,6 +100,7 @@ jobs: path: .wheels key: pip_wheels # to not being cleand with crone enableCrossOsArchive: true + - run: ls -lh .wheels/ - name: Env. variables run: | @@ -110,10 +111,11 @@ jobs: - name: Install package & dependencies run: | - pip install -e .[extra,test] "pytest-timeout" --upgrade -f ${TORCH_URL} -f ".wheels/" + pip install -e .[extra,test] "pytest-timeout" -U -f ${TORCH_URL} -f ".wheels/" --prefer-binary pip list - name: Dump handy wheels if: github.event_name == 'push' + continue-on-error: true uses: ./.github/actions/pip-wheels with: torch-url: ${{ env.TORCH_URL }}