Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
self-hosted-runner:
labels:
- hanzo-build-linux-amd64
- hanzo-build-linux-arm64
- hanzo-deploy-linux-amd64
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- main
jobs:
test:
runs-on: ubuntu-latest
runs-on: hanzo-build-linux-amd64
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,22 @@ name: Docker
on:
workflow_dispatch:
push:
branches: [main, dev, test]
tags: ['v*']

permissions:
contents: read
packages: write

# Multi-arch (amd64 + arm64) on native hanzo ARC runners.
# No QEMU emulation. No GitHub-hosted fallback.
# Semver-only tags (v*); see hanzoai/.github docker-build.yml.
jobs:
docker:
uses: hanzoai/.github/.github/workflows/docker-build.yml@main
with:
image: ghcr.io/luxfi/explorer
platforms: linux/amd64,linux/arm64
runner-amd64: hanzo-build-linux-amd64
runner-arm64: hanzo-build-linux-arm64
runner-deploy: hanzo-deploy-linux-amd64
secrets: inherit
1 change: 0 additions & 1 deletion mdns.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ var daemonServices = []struct {
}{
{"_luxd._tcp", "luxd", "lux"},
{"_zood._tcp", "zood", "zoo"},
{"_lqd._tcp", "lqd", "liquid"},
{"_hanzod._tcp", "hanzod", "hanzo"},
{"_parsd._tcp", "parsd", "pars"},
}
Expand Down
Loading