feat: Automatically mount second disk to /opt - #29
Draft
lurtz wants to merge 1 commit into
Draft
Conversation
When running integration tests, the test data needs to be available in the virtual machine. Mounting the images automatically mimics the behavior of QNX and Docker images, where the test data is also available without extra actions.
License Check Results🚀 The license check job ran with the Bazel command: bazel run //:license-checkStatus: Click to expand output |
lurtz
commented
Aug 24, 2026
Comment on lines
+33
to
+50
| # TODO: Switch back to a released version once `--qemu-disk` is part of a tagged release. | ||
| git_override( | ||
| module_name = "score_itf", | ||
| commit = "53a7ba37bf304230fa846ec303c902ec12c8aaa2", | ||
| commit = "8aa4723dffaff85f4405315f9500a651310afb74", | ||
| remote = "https://github.com/eclipse-score/itf.git", | ||
| ) | ||
|
|
||
| # Filesystem image rules, used to build the additional disk image attached to the | ||
| # QEMU targets via `--qemu-disk`. | ||
| bazel_dep(name = "score_rules_imagefs", version = "0.0.3") | ||
|
|
||
| # TODO: Switch back to a released version once the `ext4` rule is available in a tagged release. | ||
| git_override( | ||
| module_name = "score_rules_imagefs", | ||
| commit = "b1278766c01d9f4102c24e87b0ce9d035eaed832", | ||
| remote = "https://github.com/eclipse-score/rules_imagefs.git", | ||
| ) | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When running integration tests, the test data needs to be available in the virtual machine. Mounting the images automatically mimics the behavior of QNX and Docker images, where the test data is also available without extra actions.
Depends on eclipse-score/rules_imagefs#16