File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 4242 mkdir /tmp/docker
4343 docker image save -o /tmp/docker/base-gdal${{ matrix.gdal-version }}.tar lambgeo/lambda:gdal${{ matrix.gdal-version }}
4444
45+ - name : Restore dependencies
46+ if : steps.cache-deps.outputs.cache-hit == 'true'
47+ run : |
48+ docker image load -i /tmp/docker/base-gdal${{ matrix.gdal-version }}.tar
49+ docker images
50+
4551 - name : Run Tests
4652 run : |
47- docker run --rm lambgeo/lambda:gdal${{ matrix.gdal-version }} --volume ${{ github.workspace }}:/local sh -c "cd /local/tests && sh tests.sh"
53+ docker run \
54+ -v ${{ github.workspace }}:/local --rm \
55+ lambgeo/lambda:gdal${{ matrix.gdal-version }} \
56+ sh -c "cd /local/tests && sh tests.sh"
4857
4958 # - name: Push to DockerHub and Publish Layer
5059 # if: contains(github.ref, 'tags')
You can’t perform that action at this time.
0 commit comments