1
0

Try to fix olddeps

This commit is contained in:
David Robertson
2022-03-10 14:39:40 +00:00
parent 1e05ee05aa
commit 3dfbeb3e20
3 changed files with 54 additions and 31 deletions

View File

@@ -115,18 +115,18 @@ jobs:
|| true
trial-olddeps:
# Note: sqlite only; no postgres
if: ${{ !cancelled() && !failure() }} # Allow previous steps to be skipped, but not fail
needs: linting-done
# needs: linting-done
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test with old deps
uses: docker://ubuntu:focal # For old python and sqlite
# Note: focal seems to be using 3.8, but the oldest is 3.7?
with:
workdir: /github/workspace
entrypoint: .ci/scripts/test_old_deps.sh
env:
TRIAL_FLAGS: "--jobs=2"
- name: Dump logs
# Logs are most useful when the command fails, always include them.
if: ${{ always() }}
@@ -149,7 +149,7 @@ jobs:
strategy:
matrix:
python-version: ["pypy-3.7"]
extras: [""]
extras: ["all"]
steps:
- uses: actions/checkout@v2