0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-12 07:38:58 +02:00

Cache rust build deps in trial CI (#14287)

This commit is contained in:
Erik Johnston 2022-10-25 11:27:56 +01:00 committed by GitHub
parent 8c94dd3a27
commit d125919963
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -167,6 +167,14 @@ jobs:
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_INITDB_ARGS="--lc-collate C --lc-ctype C --encoding UTF8" \
postgres:${{ matrix.job.postgres-version }}
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.58.1
override: true
- uses: Swatinem/rust-cache@v2
- uses: matrix-org/setup-python-poetry@v1
with:
python-version: ${{ matrix.job.python-version }}

1
changelog.d/14287.misc Normal file
View file

@ -0,0 +1 @@
Add Rust cache to CI for `trial` runs.