Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/src/custom-acts.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,9 @@ we just need to build ldmx-sw with specific `cmake` options pointing it to our n
just configure -DActs_DIR=/path/to/ldmx/acts/install
just build
```
Some other CMake options may be required depending on your version of ACTS and the version of the dev
image you are using. Below are some options that we've come across while testing. They can be set on the
the command line when running `just configure` with `-D<name>=<value>` like `Acts_DIR` above.
- `CMAKE_FIND_DEBUG_MODE`: may need to be turned `OFF`
- `nlohmann_json_DIR`: may need to be directed to the specific version that was installed with ACTS
- e.g. `-Dnlohmann_json_DIR=/path/to/ldmx/acts/install/lib/cmake/nlohmann_json/`
4 changes: 4 additions & 0 deletions docs/src/image-version.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,8 @@ variable `apptainer` defines at runtime.
```
denv printenv APPTAINER_CONTAINER
```
Putting all this together, we can find the image version label with the following one-liner.
```
apptainer inspect $(denv printenv APPTAINER_CONTAINER) | grep org.opencontainers.image.version
```
~~~