Skip to content

Posixtests #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 13 commits into
base: gemini
Choose a base branch
from
Open
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
14 changes: 0 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,6 @@ At the moment, these storage backends are supported:
- [AWS](./cmd/aws/): [deployment instructions](./deployment/live/aws/test/)
- more to come soon!

## Working on the Code
The following files are auto-generated:
- [`mock_ct_storage.go`](./mockstorage/mock_ct_storage.go): a mock CT storage implementation for tests

To re-generate these files, first install the right tools:
- [mockgen](https://github.com/golang/mock?tab=readme-ov-file#installation)

Then, generate the files:

```bash
cd $(go list -f '{{ .Dir }}' github.com/transparency-dev/static-ct); \
go generate -x ./... # hunts for //go:generate comments and runs them
```

### Contact

- Slack: https://transparency-dev.slack.com/ ([invitation](https://join.slack.com/t/transparency-dev/shared_invite/zt-27pkqo21d-okUFhur7YZ0rFoJVIOPznQ))
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module github.com/transparency-dev/static-ct

go 1.24.0

require (
cloud.google.com/go/secretmanager v1.14.6
cloud.google.com/go/spanner v1.78.0
Expand All @@ -13,7 +14,6 @@ require (
github.com/aws/smithy-go v1.22.3
github.com/gdamore/tcell/v2 v2.8.1
github.com/go-sql-driver/mysql v1.9.1
github.com/golang/mock v1.7.0-rc.1
github.com/google/go-cmp v0.7.0
github.com/kylelemons/godebug v1.1.0
github.com/prometheus/client_golang v1.21.1
Expand All @@ -27,7 +27,6 @@ require (
golang.org/x/net v0.38.0
google.golang.org/api v0.228.0
google.golang.org/grpc v1.71.0
google.golang.org/protobuf v1.36.6
k8s.io/klog/v2 v2.130.1
)

Expand Down Expand Up @@ -105,4 +104,5 @@ require (
google.golang.org/genproto v0.0.0-20250303144028-a0af3efb3deb // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
google.golang.org/protobuf v1.36.6 // indirect
)
1 change: 0 additions & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1448,7 +1448,6 @@ golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
golang.org/x/tools v0.1.8/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU=
golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU=
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k=
Expand Down
Loading