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
19 changes: 0 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,25 +27,6 @@ jobs:
version: v2.10
skip-cache: true

generated:
name: Check Generated Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: "1.26"
cache: true
- uses: bufbuild/buf-action@v1
with:
setup_only: true
version: "1.66.1"
- name: Install protoc plugins
run: |
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install connectrpc.com/connect/cmd/protoc-gen-connect-go@latest
- run: make check-protos

test:
name: Test
runs-on: ubuntu-latest
Expand Down
12 changes: 1 addition & 11 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ VERSION := $(shell cat VERSION)

LDFLAGS := -X main.version=$(VERSION)

.PHONY: build lint test protos check-protos docs check-docs clean
.PHONY: build lint test docs check-docs clean

build:
go build -ldflags '$(LDFLAGS)' -o terraform-provider-splitsecure .
Expand All @@ -13,16 +13,6 @@ lint:
test:
go test ./...

protos:
buf generate

check-protos: protos
@if [ -n "$$(git status --porcelain gen/)" ]; then \
echo "gen/ is out of date. Run 'make protos' and commit." >&2; \
git diff gen/ >&2; \
exit 1; \
fi

docs:
go generate ./...

Expand Down
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,6 @@ terraform destroy -auto-approve

## Development

### Proto sync

The provider ships an allowlisted subset of `.proto` definitions, plus three slim provider-owned services (so threshold/bottle/hybridkeyset transitive deps don't end up in the build).

```bash
./scripts/sync-protos.sh /path/to/source/apis/proto
buf generate
```

### Build

```bash
Expand Down
15 changes: 0 additions & 15 deletions buf.gen.yaml

This file was deleted.

9 changes: 0 additions & 9 deletions buf.yaml

This file was deleted.

This file was deleted.

This file was deleted.

Loading