Compare commits

...

3 Commits

Author SHA1 Message Date
datadunia 2d366c4619 fix(ci): use setup-go built-in cache, remove go-hashfiles and actions/cache from Go builds
CI / server-core-test (push) Has been skipped
CI / device-agent-test (push) Has been skipped
CI / dashboard-test (push) Has been skipped
CI / build-server-core (push) Successful in 3m34s
CI / build-device-agent (push) Successful in 2m20s
CI / build-dashboard (push) Successful in 1m34s
CI / build-docs (push) Successful in 51s
CI / release (push) Successful in 26s
2026-06-18 02:23:45 +07:00
datadunia dad057528c chore: update device-agent (embed wintun.dll in exe)
CI / server-core-test (push) Has been skipped
CI / device-agent-test (push) Has been skipped
CI / dashboard-test (push) Has been skipped
CI / build-server-core (push) Successful in 4m1s
CI / build-device-agent (push) Successful in 14m24s
CI / build-dashboard (push) Successful in 3m0s
CI / build-docs (push) Successful in 55s
CI / release (push) Successful in 27s
2026-06-17 18:18:51 +07:00
datadunia 8ae9149620 fix: same HWID re-provisioning + wintun.dll search path
CI / server-core-test (push) Has been skipped
CI / device-agent-test (push) Has been skipped
CI / dashboard-test (push) Has been skipped
CI / build-server-core (push) Successful in 12m40s
CI / build-dashboard (push) Has been cancelled
CI / build-docs (push) Has been cancelled
CI / release (push) Has been cancelled
CI / build-device-agent (push) Has been cancelled
2026-06-17 18:05:04 +07:00
4 changed files with 4 additions and 40 deletions
+1 -17
View File
@@ -22,23 +22,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: '1.26'
cache: false
- uses: https://gitea.com/actions/go-hashfiles@v0.0.1
id: hash-go
with:
patterns: |
apps/device-agent/go.mod
apps/device-agent/go.sum
- uses: actions/cache@v3
with:
path: |
/toolcache/go
/root/go/pkg/mod
/root/.cache/go-build
key: go-device-agent-${{ steps.hash-go.outputs.hash }}
restore-keys: go-device-agent-
cache: true
- name: Build all platforms
working-directory: apps/device-agent
+1 -21
View File
@@ -22,27 +22,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: '1.26'
cache: false
- uses: https://gitea.com/actions/go-hashfiles@v0.0.1
id: hash-go
with:
patterns: |
apps/server-core/go.mod
apps/server-core/go.sum
- uses: actions/cache@v3
with:
path: |
/toolcache/go
/root/go/pkg/mod
/root/.cache/go-build
key: go-server-core-${{ steps.hash-go.outputs.hash }}
restore-keys: go-server-core-
- name: Download Go modules
working-directory: apps/server-core
run: go mod download
cache: true
- name: Generate Swagger docs
working-directory: apps/server-core