Lines Matching +full:lookup +full:- +full:only

6       - main
9 - main
14 group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
15 cancel-in-progress: true
18 # .github/do-zephyr --buildtype release
22 DOCKERFILE: picolibc/.github/Dockerfile-zephyr
23 IMAGE_FILE: dockerimg-zephyr.tar.zst
25 PACKAGES_FILE: picolibc/.github/zephyr-packages.txt
26 EXTRA_FILE: picolibc/.github/zephyr-files.txt
29 cache-maker:
30 runs-on: ubuntu-latest
32 - name: Clone picolibc
37 - name: Cache the Docker Image
42 … key: ${{ env.IMAGE_FILE }}-${{ hashFiles( env.DOCKERFILE, env.PACKAGES_FILE, env.EXTRA_FILE ) }}
43 lookup-only: true
45 - name: Set up Docker Buildx
46 if: steps.cache.outputs.cache-hit != 'true'
47 uses: docker/setup-buildx-action@v3
49 - name: Build picolibc container
50 if: steps.cache.outputs.cache-hit != 'true'
51 uses: docker/build-push-action@v6
54 file: .github/Dockerfile-zephyr
56 …outputs: type=docker,force-compression=true,compression=zstd,compression-level=22,dest=${{ env.IMA…
58 minsize-zephyr:
59 needs: cache-maker
60 runs-on: ubuntu-latest
67-Dio-float-exact=false -Dio-long-long=true -Dio-percent-b=true -Dio-long-double=true -Dnewlib-obso…
68 …"-Dformat-default=integer -Dfreestanding=true -Dposix-io=false -Dnewlib-obsolete-math=true -Dwant-
71 "-Dtinystdio=false",
72-Dtinystdio=false -Dnewlib-io-float=true -Dio-long-long=true -Dio-long-double=true -Dnewlib-fvwrit…
75 "./.github/do-zephyr",
78 - name: Clone picolibc
83 - name: Restore the Docker Image
87 … key: ${{ env.IMAGE_FILE }}-${{ hashFiles( env.DOCKERFILE, env.PACKAGES_FILE, env.EXTRA_FILE ) }}
88 fail-on-cache-miss: true
90 - name: Load and Check the Docker Image
92 docker load -i $IMAGE_FILE
93 docker images -a $IMAGE
98 - name: install ccache
99 if: matrix.test == './.github/do-zephyr'
101 …wget -nv https://github.com/ccache/ccache/releases/download/v4.8.2/ccache-4.8.2-linux-x86_64.tar.xz
102 …sudo tar xf ccache-4.8.2-linux-x86_64.tar.xz -C /usr/bin --strip-components=1 --no-same-owner ccac…
103 rm -f ccache-*-linux-x86_64.tar.xz
107 - name: ccache
108 if: matrix.test == './.github/do-zephyr'
109 uses: hendrikmuhs/ccache-action@v1.2.14
111 …key: compilation-${{ runner.os }}-${{ github.job }}-${{ matrix.meson_flags }}-${{ env.CCACHE_SIZE …
112 max-size: ${{ env.CCACHE_SIZE }}
114 - name: Minsize test
116-v $(readlink -f picolibc):/picolibc -w /picolibc -v $GITHUB_WORKSPACE/.ccache:/root/.ccache $IMAG…
118 release-zephyr:
119 needs: cache-maker
120 runs-on: ubuntu-latest
127-Dio-float-exact=false -Dio-long-long=true -Dio-percent-b=true -Dio-long-double=true -Dnewlib-obso…
128 …"-Dformat-default=integer -Dfreestanding=true -Dposix-io=false -Dnewlib-obsolete-math=true -Dwant-
131 "-Dtinystdio=false",
132-Dtinystdio=false -Dnewlib-io-float=true -Dio-long-long=true -Dio-long-double=true -Dnewlib-fvwrit…
135 "./.github/do-zephyr",
138 - name: Clone picolibc
143 - name: Restore the Docker Image
147 … key: ${{ env.IMAGE_FILE }}-${{ hashFiles( env.DOCKERFILE, env.PACKAGES_FILE, env.EXTRA_FILE ) }}
148 fail-on-cache-miss: true
150 - name: Load and Check the Docker Image
152 docker load -i $IMAGE_FILE
153 docker images -a $IMAGE
158 - name: install ccache
159 if: matrix.test == './.github/do-zephyr'
161 …wget -nv https://github.com/ccache/ccache/releases/download/v4.8.2/ccache-4.8.2-linux-x86_64.tar.xz
162 …sudo tar xf ccache-4.8.2-linux-x86_64.tar.xz -C /usr/bin --strip-components=1 --no-same-owner ccac…
163 rm -f ccache-*-linux-x86_64.tar.xz
167 - name: ccache
168 if: matrix.test == './.github/do-zephyr'
169 uses: hendrikmuhs/ccache-action@v1.2.14
171 …key: compilation-${{ runner.os }}-${{ github.job }}-${{ matrix.meson_flags }}-${{ env.CCACHE_SIZE …
172 max-size: ${{ env.CCACHE_SIZE }}
174 - name: Release test
176-v $(readlink -f picolibc):/picolibc -w /picolibc -v $GITHUB_WORKSPACE/.ccache:/root/.ccache $IMAG…