From fdb355bac780798428137e9ca303ae99d949f9d0 Mon Sep 17 00:00:00 2001 From: catvayor Date: Sun, 15 Dec 2024 21:22:02 +0100 Subject: [PATCH] feat(netconf/netcore02): ci build --- .forgejo/workflows/eval-nodes.yaml | 11 +++++++++++ scripts/cache-node.sh | 3 +++ 2 files changed, 14 insertions(+) diff --git a/.forgejo/workflows/eval-nodes.yaml b/.forgejo/workflows/eval-nodes.yaml index d9ad824..1453469 100644 --- a/.forgejo/workflows/eval-nodes.yaml +++ b/.forgejo/workflows/eval-nodes.yaml @@ -1,4 +1,15 @@ jobs: + netcore02: + runs-on: nix + steps: + - uses: actions/checkout@v3 + - env: + BUILD_NODE: netcore02 + STORE_ENDPOINT: https://tvix-store.dgnum.eu/infra-signing/ + STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }} + STORE_USER: admin + name: Build and cache netcore02 + run: nix-shell -A eval-nodes --run cache-node ap01: runs-on: nix steps: diff --git a/scripts/cache-node.sh b/scripts/cache-node.sh index 081addc..1445255 100755 --- a/scripts/cache-node.sh +++ b/scripts/cache-node.sh @@ -23,6 +23,9 @@ case "$system_type" in zyxel-nwa50ax) toplevel_path="config.system.outputs.zyxel-nwa-fit" ;; + netconf) + toplevel_path="config.netconf.rpc" + ;; *) echo "Unsupported system type '$system_type' for caching; add an entry in 'scripts/cache-node.sh'" exit 1