Skip to content

Commit 3e593ed

Browse files
committed
Merge branch 'main' into jade/ton-ctf-devenv
2 parents d9ef70a + f566bbe commit 3e593ed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+4821
-272
lines changed

.github/workflows/pods-test.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Snapshot Tests
2+
on: [push]
3+
defaults:
4+
run:
5+
working-directory: framework/pods
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
jobs:
10+
test:
11+
permissions:
12+
id-token: write
13+
contents: read
14+
runs-on: ${{ matrix.test.vm }}
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
test:
19+
- test: test
20+
vm: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v4
23+
- name: Set up Go
24+
uses: actions/setup-go@v5
25+
with:
26+
go-version-file: framework/go.mod
27+
- name: Install dependencies
28+
run: go mod download
29+
- name: Cache Go modules
30+
uses: actions/cache@v4
31+
with:
32+
path: |
33+
~/.cache/go-build
34+
~/go/pkg/mod
35+
key: go-modules-${{ hashFiles('go.sum') }}-${{ runner.os }}-test
36+
restore-keys: |
37+
go-modules-${{ runner.os }}-test
38+
- uses: extractions/setup-just@dd310ad5a97d8e7b41793f8ef055398d51ad4de6 # v2.0.0
39+
with:
40+
github-token: ${{ secrets.GITHUB_TOKEN }}
41+
just-version: '1.39.0'
42+
- name: Run tests
43+
run: |
44+
just ${{ matrix.test.test }}

book/go.mod

Lines changed: 36 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,48 @@ require (
2121
github.com/containerd/errdefs/pkg v0.3.0 // indirect
2222
github.com/crate-crypto/go-eth-kzg v1.4.0 // indirect
2323
github.com/creack/pty v1.1.24 // indirect
24+
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2425
github.com/ethereum/c-kzg-4844/v2 v2.1.5 // indirect
2526
github.com/ethereum/go-ethereum v1.16.8 // indirect
27+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
28+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
29+
github.com/go-openapi/jsonreference v0.21.0 // indirect
30+
github.com/go-openapi/swag v0.23.0 // indirect
2631
github.com/go-resty/resty/v2 v2.16.5 // indirect
32+
github.com/golang/protobuf v1.5.4 // indirect
33+
github.com/google/gnostic-models v0.6.9 // indirect
34+
github.com/google/go-cmp v0.7.0 // indirect
35+
github.com/google/gofuzz v1.2.0 // indirect
2736
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
37+
github.com/josharian/intern v1.0.0 // indirect
38+
github.com/mailru/easyjson v0.7.7 // indirect
2839
github.com/mattn/go-runewidth v0.0.16 // indirect
2940
github.com/moby/go-archive v0.1.0 // indirect
41+
github.com/moby/spdystream v0.5.0 // indirect
42+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
43+
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
3044
github.com/rivo/uniseg v0.4.7 // indirect
3145
github.com/rs/cors v1.11.1 // indirect
32-
github.com/stretchr/testify v1.10.0 // indirect
46+
github.com/spf13/pflag v1.0.6 // indirect
47+
github.com/stretchr/testify v1.11.1 // indirect
3348
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
3449
github.com/testcontainers/testcontainers-go v0.37.0 // indirect
50+
github.com/x448/float16 v0.8.4 // indirect
3551
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.34.0 // indirect
52+
golang.org/x/oauth2 v0.32.0 // indirect
53+
golang.org/x/term v0.34.0 // indirect
54+
golang.org/x/time v0.10.0 // indirect
55+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
56+
gopkg.in/inf.v0 v0.9.1 // indirect
57+
k8s.io/api v0.32.3 // indirect
58+
k8s.io/apimachinery v0.32.3 // indirect
59+
k8s.io/client-go v0.32.3 // indirect
60+
k8s.io/klog/v2 v2.130.1 // indirect
61+
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
62+
k8s.io/utils v0.0.0-20241104163129-6fe5fd82f078 // indirect
63+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
64+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
65+
sigs.k8s.io/yaml v1.4.0 // indirect
3666
)
3767

3868
require (
@@ -105,7 +135,7 @@ require (
105135
github.com/shirou/gopsutil/v4 v4.25.1 // indirect
106136
github.com/sirupsen/logrus v1.9.3 // indirect
107137
github.com/supranational/blst v0.3.16-0.20250831170142-f48500c1fdbe // indirect
108-
github.com/tidwall/gjson v1.17.0 // indirect
138+
github.com/tidwall/gjson v1.18.0 // indirect
109139
github.com/tidwall/match v1.1.1 // indirect
110140
github.com/tidwall/pretty v1.2.1 // indirect
111141
github.com/tklauser/go-sysconf v0.3.13 // indirect
@@ -120,11 +150,11 @@ require (
120150
go.opentelemetry.io/otel/trace v1.37.0 // indirect
121151
go.uber.org/multierr v1.11.0 // indirect
122152
golang.org/x/arch v0.11.0 // indirect
123-
golang.org/x/crypto v0.39.0 // indirect
124-
golang.org/x/net v0.40.0 // indirect
125-
golang.org/x/sync v0.15.0 // indirect
153+
golang.org/x/crypto v0.41.0 // indirect
154+
golang.org/x/net v0.43.0 // indirect
155+
golang.org/x/sync v0.16.0 // indirect
126156
golang.org/x/sys v0.36.0 // indirect
127-
golang.org/x/text v0.26.0 // indirect
157+
golang.org/x/text v0.28.0 // indirect
128158
google.golang.org/genproto/googleapis/api v0.0.0-20250528174236-200df99c418a // indirect
129159
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect
130160
google.golang.org/grpc v1.72.2 // indirect

0 commit comments

Comments
 (0)