I'm using .gitlab-ci.yml
and docker as a GitLab CI runner on an Android project. At the end of the test run, gradlew
saves test results in xml and html under the build directory:
Finished generating test XML results (0.001 secs) into: /builds/org/project/sdk/build/test-results/release
Generating HTML test report...
Finished generating test html results (0.002 secs) into: /builds/org/project/sdk/build/reports/tests/release
I'd like to have access to these files, but the documentation doesn't mention how to mount a volume like one would with docker run -v <path>:/builds/org/...
.