diff options
author | Erik Johnston <erik@matrix.org> | 2022-09-07 15:07:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-07 14:07:06 +0000 |
commit | 8d7fcf9b761941d73af4f150e1173cafe86714a2 (patch) | |
tree | cae6e3a6af3cbead6e8689222de212910b1eec35 /.github/workflows/twisted_trunk.yml | |
parent | Add some rust caching to CI (#13735) (diff) | |
download | synapse-8d7fcf9b761941d73af4f150e1173cafe86714a2.tar.xz |
Fix latest deps CI (#13734)
Diffstat (limited to '.github/workflows/twisted_trunk.yml')
-rw-r--r-- | .github/workflows/twisted_trunk.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/twisted_trunk.yml b/.github/workflows/twisted_trunk.yml index 0906101cc1..8fa2fbdea0 100644 --- a/.github/workflows/twisted_trunk.yml +++ b/.github/workflows/twisted_trunk.yml @@ -16,6 +16,14 @@ jobs: steps: - uses: actions/checkout@v2 + + - name: Install Rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + - uses: Swatinem/rust-cache@v2 + - uses: matrix-org/setup-python-poetry@v1 with: python-version: "3.x" @@ -34,6 +42,14 @@ jobs: steps: - uses: actions/checkout@v2 - run: sudo apt-get -qq install xmlsec1 + + - name: Install Rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + - uses: Swatinem/rust-cache@v2 + - uses: matrix-org/setup-python-poetry@v1 with: python-version: "3.x" @@ -66,6 +82,14 @@ jobs: steps: - uses: actions/checkout@v2 + + - name: Install Rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + - uses: Swatinem/rust-cache@v2 + - name: Patch dependencies # Note: The poetry commands want to create a virtualenv in /src/.venv/, # but the sytest-synapse container expects it to be in /venv/. |