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