From 0914087fce344f53537624e48bd0146bd90e6a47 Mon Sep 17 00:00:00 2001 From: Adrien Beaudouin <3679080+adr1enbe4udou1n@users.noreply.github.com> Date: Thu, 5 Jun 2025 20:02:35 +0200 Subject: [PATCH] add build --- .gitea/workflows/build.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) 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