File tree 1 file changed +15
-1
lines changed 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -47,13 +47,27 @@ First, ensure you have installed the following prerequisites:
47
47
* [ Rust] ( https://www.rust-lang.org/ ) >= v1.51.0, as installed via [ rustup] ( https://www.rust-lang.org/learn/get-started ) .
48
48
* [ Docker] ( https://www.docker.com/ ) >= v20.10.6
49
49
* [ Docker Compose] ( https://docs.docker.com/compose/ ) >= v1.27.4
50
- * (Ubuntu only) install ` libssl-dev `
50
+ * On Ubuntu 20.04, these additional steps are also required:
51
+ * Install some additional dependencies:
52
+
53
+ ```
54
+ $ sudo apt install libssl-dev pkg-config
55
+ ```
56
+
57
+ * Give the current user permissions to run ` docker ` without ` sudo ` :
58
+
59
+ ```
60
+ $ sudo usermod -aG docker $USER
61
+ ```
51
62
52
63
Then, run these commands to clone, build, and run the benchmark suite's tests:
53
64
54
65
```shell
55
66
$ git clone https://github.com/karlmdavis/fhir-benchmarks.git
56
67
$ cd fhir-benchmarks
68
+ $ # Pull in the submodules:
69
+ $ git submodule init
70
+ $ git submodule sync
57
71
$ # Build in debug mode and run tests:
58
72
$ cargo test
59
73
$ # Build in release mode and run benchmarks:
You can’t perform that action at this time.
0 commit comments