diff options
author | BlackDex <[email protected]> | 2022-03-20 18:51:24 +0100 |
---|---|---|
committer | BlackDex <[email protected]> | 2022-03-20 18:51:24 +0100 |
commit | b0faaf25277fbbd2aea85b9c38868eb66ab45cc8 (patch) | |
tree | ce71870fe49a94aea2e7f6bdbb7684e844cd3df6 /.github | |
parent | 8d06d9c1111d642d0c2d03c1d29b0170e79f0c11 (diff) | |
download | vaultwarden-b0faaf25277fbbd2aea85b9c38868eb66ab45cc8.tar.gz vaultwarden-b0faaf25277fbbd2aea85b9c38868eb66ab45cc8.zip |
Several updates and fixes
- Removed all `thread::sleep` and use `tokio::time::sleep` now.
This solves an issue with updating to Bullseye ( Resolves #1998 )
- Updated all Debian images to Bullseye
- Added MiMalloc feature and enabled it by default for Alpine based images
This increases performance for the Alpine images because the default
memory allocator for MUSL based binaries isn't that fast
- Updated `dotenv` to `dotenvy` a maintained and updated fork
- Fixed an issue with a newer jslib (not fully released yet)
That version uses a different endpoint for `prelogin` Resolves #2378 )
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 465cf2a5..cd17230d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: include: - target-triple: x86_64-unknown-linux-gnu host-triple: x86_64-unknown-linux-gnu - features: [sqlite,mysql,postgresql] # Remember to update the `cargo test` to match the amount of features + features: [sqlite,mysql,postgresql,enable_mimalloc] # Remember to update the `cargo test` to match the amount of features channel: stable os: ubuntu-20.04 ext: "" |