From 9931c622b658a45bf25e9b6bc6511e5b79e9d3ef Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Wed, 16 Oct 2024 11:28:30 +0200 Subject: [PATCH] feat(workflows/eval): Add web03 to the list --- .forgejo/workflows/eval.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.forgejo/workflows/eval.yaml b/.forgejo/workflows/eval.yaml index 106743e..e12ac67 100644 --- a/.forgejo/workflows/eval.yaml +++ b/.forgejo/workflows/eval.yaml @@ -180,6 +180,25 @@ jobs: name: outputs_web02 path: paths.txt + build_and_cache_web03: + runs-on: nix + steps: + - uses: actions/checkout@v3 + + - name: Build and cache the node + run: nix-shell --run cache-node + env: + STORE_ENDPOINT: "https://tvix-store.dgnum.eu/infra-signing/" + STORE_USER: "admin" + STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }} + BUILD_NODE: "web03" + + - uses: actions/upload-artifact@v3 + if: always() + with: + name: outputs_web02 + path: paths.txt + build_and_cache_bridge01: runs-on: nix steps: