I run my pipeline and at the end i have
in the Build teardown
a have
<span>The docker cache will consist of all unique layers from the following images:</span>
<span>XXXX latest 0b36a0e36fe1 2 minutes ago 2.89GB</span>
<span>XXXX master 0b36a0e36fe1 2 minutes ago 2.89GB</span>
<span><none> <none> 2b8bbc83a9f5 2 minutes ago 2.88GB</span>
<span><none> <none> 847beca8464e 2 minutes ago 2.88GB</span>
<span><none> <none> f743250d3034 3 minutes ago 2.88GB</span>
<span><none> <none> ab9f9a255307 3 minutes ago 2.87GB</span>
<span><none> <none> ad702401ef7b 3 minutes ago 2.86GB</span>
<span><none> <none> 27b2c6836e41 4 minutes ago 2.8GB</span>
<span><none> <none> 0eb31686926a 5 minutes ago 2.16GB</span>
<span><none> <none> 69b7aab14d03 5 minutes ago 2.16GB</span>
<span><none> <none> c08aec3ba4f3 5 minutes ago 2.16GB</span>
<span><none> <none> eb026f344d64 6 minutes ago 2.16GB</span>
<span><none> <none> ea4d1f930f54 6 minutes ago 1.92GB</span>
<span>cypress/browsers node14.16.0-chrome89-ff86 94078a0112a3 6 months ago 1.9GB</span>
<span>Docker images saved to cache</span>
<span>Searching for files matching artifact pattern test/**</span>
<span>Finished scanning for test reports. Found 0 test report files.</span>
<span>Merged test suites, total number tests is 0, with 0 failures and 0 errors.</span><span>Assembling contents of new cache 'node'</span>
After execution when I go in the caches button, but it seems the cache has not been really saved
and if a restart a pipeline the Build setup indicate
<span>Cache "docker": Not found</span>
<span>Cache "node": Downloading</span>
<span>Cache "node": Not found</span><span>Cache "docker": Downloading</span>
Does anyone have an idea of my mistake ?
Here my pipeline file
image: atlassian/default-image:2
pipelines:
default:
- step:
name: Build
script:
- docker login XXX
- docker build --tag test-ci .
- docker tag test-ci XXXX
- docker push XXX
services:
- docker
caches:
- docker
- node
artifacts:
- test/**