error: could not compile `bitwarden_rs`
Caused by:
process didn't exit successfully:
[...]
(signal: 9, SIGKILL: kill)
Originally created by @bhopmann on GitHub (Feb 7, 2021).
<!--
# ###
NOTE: Please update to the latest version of bitwarden_rs before reporting an issue!
This saves you and us a lot of time and troubleshooting.
See: https://github.com/dani-garcia/bitwarden_rs/issues/1180
# ###
-->
<!--
Please fill out the following template to make solving your problem easier and faster for us.
This is only a guideline. If you think that parts are unnecessary for your issue, feel free to remove them.
Remember to hide/obfuscate personal and confidential information,
such as names, global IP/DNS addresses and especially passwords, if necessary.
-->
### Subject of the issue
<!-- Describe your issue here.-->
Latest `1.19.0` version on `async` branch fails to build.
### Your environment
<!-- The version number, obtained from the logs or the admin diagnostics page -->
<!-- Remember to check your issue on the latest version first! -->
* Bitwarden_rs version: `1.19.0` (using the `async` branch):
<!-- How the server was installed: Docker image / package / built from source -->
* Install method: manual build
* Clients used: <!-- if applicable -->
* Reverse proxy and version: <!-- if applicable -->
* Version of mysql/postgresql: <!-- if applicable -->
* Other relevant information: compile for sqlite
### Steps to reproduce
<!-- Tell us how to reproduce this issue. What parameters did you set (differently from the defaults)
and how did you start bitwarden_rs? -->
```
git clone https://github.com/dani-garcia/bitwarden_rs.git
git checkout origin/async
cargo build -j 1 --release --features sqlite
```
### Expected behaviour
<!-- Tell us what should happen -->
successful build
### Actual behaviour
<!-- Tell us what happens instead -->
build error when compiling `bitwarden_rs`
### Relevant logs
<!-- Share some logfiles, screenshots or output of relevant programs with us. -->
```
error: could not compile `bitwarden_rs`
Caused by:
process didn't exit successfully:
[...]
(signal: 9, SIGKILL: kill)
```
On what kind of hardware are you trying to build this?
Most of the time these errors are low memory related.
Also, the async branch could be build with the latest stable if im correct. You just need to override the rust-toolchain file by using cargo +stable build ...
@BlackDex commented on GitHub (Feb 7, 2021):
On what kind of hardware are you trying to build this?
Most of the time these errors are low memory related.
Also, the async branch could be build with the latest stable if im correct. You just need to override the rust-toolchain file by using `cargo +stable build ...`
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @bhopmann on GitHub (Feb 7, 2021).
Subject of the issue
Latest
1.19.0version onasyncbranch fails to build.Your environment
1.19.0(using theasyncbranch):Steps to reproduce
Expected behaviour
successful build
Actual behaviour
build error when compiling
bitwarden_rsRelevant logs
@BlackDex commented on GitHub (Feb 7, 2021):
On what kind of hardware are you trying to build this?
Most of the time these errors are low memory related.
Also, the async branch could be build with the latest stable if im correct. You just need to override the rust-toolchain file by using
cargo +stable build ...