We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b41e8e commit de8b49eCopy full SHA for de8b49e
1 file changed
.github/workflows/build_runtime_images.yaml
@@ -51,12 +51,20 @@ jobs:
51
--build-arg OPENCL_PLATFORM=${{ matrix.opencl }} \
52
--build-arg VIRTUALGL=${{ matrix.vgl }}
53
54
+ - name: Cache test data
55
+ id: cache-test-dataset
56
+ uses: actions/cache@v4
57
+ with:
58
+ path: ~/FAST/data/
59
+ key: test-dataset
60
+ enableCrossOsArchive: true
61
+
62
- name: Test
63
run: |
64
if [ "${{ matrix.opencl }}" = "intel" ]; then
- docker run --rm --device=/dev/dri $IMAGE_NAME
65
+ docker run --rm -v ~/FAST/data/:/root/FAST/data/:ro --device=/dev/dri $IMAGE_NAME
66
else
- docker run --rm $IMAGE_NAME
67
+ docker run --rm -v ~/FAST/data/:/root/FAST/data/:ro $IMAGE_NAME
68
fi
69
70
- name: Save docker image to file
0 commit comments