diff options
author | David Robertson <davidr@element.io> | 2022-04-12 11:50:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 10:50:11 +0000 |
commit | 4e1374373857f2f7a911a31c50476342d9070681 (patch) | |
tree | 2598ccd20ef83997814faf50173f440bf76bed11 /.github/workflows | |
parent | Specify tls extra for Twisted dependency. (#12444) (diff) | |
download | synapse-4e1374373857f2f7a911a31c50476342d9070681.tar.xz |
Poetry: select olddeps using `poetry` (#12407)
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/tests.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0fbffd159c..5a98f61932 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -128,6 +128,7 @@ jobs: || true trial-olddeps: + # Note: sqlite only; no postgres if: ${{ !cancelled() && !failure() }} # Allow previous steps to be skipped, but not fail needs: linting-done runs-on: ubuntu-latest @@ -135,11 +136,11 @@ jobs: - 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? + # See https://github.com/matrix-org/synapse/issues/12343 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() }} |