Lines Matching +full:- +full:linux +full:- +full:x86_64
2 - name: Clone picolibc
7 - name: Restore the Docker Image
11 … key: ${{ env.IMAGE_FILE }}-${{ hashFiles( env.DOCKERFILE, env.PACKAGES_FILE, env.EXTRA_FILE ) }}
12 fail-on-cache-miss: true
14 - name: Load and Check the Docker Image
16 docker load -i $IMAGE_FILE
17 docker images -a $IMAGE
22 - name: install ccache
23 if: matrix.test == './.github/do-zephyr'
25 …wget -nv https://github.com/ccache/ccache/releases/download/v4.8.2/ccache-4.8.2-linux-x86_64.tar.xz
26 …sudo tar xf ccache-4.8.2-linux-x86_64.tar.xz -C /usr/bin --strip-components=1 --no-same-owner ccac…
27 rm -f ccache-*-linux-x86_64.tar.xz
29 # Key on job name and cache size to get separate caches for linux
31 - name: ccache
32 if: matrix.test == './.github/do-zephyr'
33 uses: hendrikmuhs/ccache-action@v1.2.14
35 …key: compilation-${{ runner.os }}-${{ github.job }}-${{ matrix.meson_flags }}-${{ env.CCACHE_SIZE …
36 max-size: ${{ env.CCACHE_SIZE }}