diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index e6d2b27..78d1e38 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -47,3 +47,14 @@ jobs: CONTAINER_REGISTRY: ${{ vars.CONTAINER_REGISTRY }} run: | make registry-core-filesystem PLATFORM=linux/amd64 REGISTRY_USERNAME=$CONTAINER_REGISTRY/okami101/stagex + + - name: Restore binutils cache + uses: actions/cache@v4 + with: + path: fetch/core/binutils + key: binutils-${{ hashFiles('packages/core/binutils/package.toml') }} + - name: Build binutils + env: + CONTAINER_REGISTRY: ${{ vars.CONTAINER_REGISTRY }} + run: | + make registry-core-binutils PLATFORM=linux/amd64 REGISTRY_USERNAME=$CONTAINER_REGISTRY/okami101/stagex