File tree Expand file tree Collapse file tree 1 file changed +0
-26
lines changed
Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Original file line number Diff line number Diff line change 3434 steps :
3535 - uses : actions/checkout@v4
3636
37- # Set up Docker Buildx for better caching
38- - name : Set up Docker Buildx
39- uses : docker/setup-buildx-action@v3
40-
41- # Cache Docker layers
42- - name : Cache Docker layers
43- uses : actions/cache@v4
44- with :
45- path : /tmp/.buildx-cache
46- key : docker-buildx-${{ runner.os }}-${{ matrix.version }}-${{ github.sha }}
47- restore-keys : |
48- docker-buildx-${{ runner.os }}-${{ matrix.version }}-
49- docker-buildx-${{ runner.os }}-
50-
51- # Cache Cargo registry and git dependencies
52- - name : Cache Cargo
53- uses : actions/cache@v4
54- with :
55- path : |
56- ~/.cargo/registry
57- ~/.cargo/git
58- key : cargo-${{ runner.os }}-${{ matrix.version }}-${{ github.sha }}
59- restore-keys : |
60- cargo-${{ runner.os }}-${{ matrix.version }}-
61- cargo-${{ runner.os }}-
62-
6337 - name : Build Firecracker ${{ matrix.version }}
6438 run : ./build.sh "${{ matrix.version }}"
6539
You can’t perform that action at this time.
0 commit comments