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
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,4 @@ jobs:
go-version-file: go.mod
cache-dependency-path: go.sum

- run: make bin/mk_funcs.so
- run: make test
4 changes: 0 additions & 4 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ version: 2
before:
hooks:
- make tidy
- make bin/mk_funcs.so

builds:
- id: devctl
Expand Down Expand Up @@ -44,6 +43,3 @@ changelog:
release:
draft: false
prerelease: auto
extra_files:
- glob: ./bin/mk_funcs.so
name_template: mk_funcs.so
7 changes: 1 addition & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ else
TEST_FLAGS := --github-output --race --trace --coverprofile=cover.profile
endif

-load bin/mk_funcs.so

build: bin/devctl bin/mk_funcs.so
build: bin/devctl
tidy: go.sum
format: .make/dprint-format

Expand All @@ -34,9 +32,6 @@ test_all:
bin/devctl: $(shell $(DEVCTL) list --go --exclude-tests)
go build -o $@ ./

bin/mk_funcs.so:
go build -o $@ -buildmode=c-shared ./pkg/make/mk_funcs

bin/go-jsonschema: .versions/go-jsonschema
go install github.com/atombender/go-jsonschema@$(shell $(DEVCTL) $<)

Expand Down
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ require (
github.com/spf13/viper v1.21.0
github.com/unmango/aferox v0.3.3
github.com/unmango/aferox/github v0.0.3
github.com/unmango/gnumake-go v0.0.0-20250617040417-e93f5333a4d6
github.com/unmango/go v0.10.0
)

Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,6 @@ github.com/unmango/aferox v0.3.3 h1:gKCJ2XybO+3ffmizYOi2hSKnDVdAIdW+AuGs8mBTChg=
github.com/unmango/aferox v0.3.3/go.mod h1:Td9BGmIdfyN8+sOiK3+aR2bGufOlyG5MNG6rAJwssHM=
github.com/unmango/aferox/github v0.0.3 h1:MMuaRyXvCzXUrYFbp+yPxBtX2kFUZXM19i+weF82gTw=
github.com/unmango/aferox/github v0.0.3/go.mod h1:ewQFKAL3UnIIh4A+h6oJjzvOoZovGDasglXwZElYfh0=
github.com/unmango/gnumake-go v0.0.0-20250617040417-e93f5333a4d6 h1:2v3Q15eRHEbJCYR3LDc0iY/No2e1U68ZS7KR4aqcr5E=
github.com/unmango/gnumake-go v0.0.0-20250617040417-e93f5333a4d6/go.mod h1:puO3xGoDKfGk7ZoAviaJxner9ZiY5uFHrle3XynEls8=
github.com/unmango/go v0.10.0 h1:Zpyka89pjM1czK6oZco898sk+LUkfPimCr/a1Q5go9E=
github.com/unmango/go v0.10.0/go.mod h1:GXvNW5alsANeFMv0NqSt+FWGmMVMnjNQAhMWPLzrgos=
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e h1:JVG44RsyaB9T2KIHavMF/ppJZNG9ZpyihvCd0w101no=
Expand Down
9 changes: 0 additions & 9 deletions pkg/make/make.go

This file was deleted.

11 changes: 0 additions & 11 deletions pkg/make/mk_funcs.go

This file was deleted.

1 change: 0 additions & 1 deletion pkg/make/mk_funcs/gpl.c

This file was deleted.

17 changes: 0 additions & 17 deletions pkg/make/mk_funcs/main.go

This file was deleted.

627 changes: 612 additions & 15 deletions pkg/renovate/zz_generated.schema.go

Large diffs are not rendered by default.

10 changes: 1 addition & 9 deletions test/e2e/e2e_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package e2e_test
import (
"context"
"embed"
"path/filepath"
"testing"

. "github.com/onsi/ginkgo/v2"
Expand All @@ -18,8 +17,7 @@ import (
var testdata embed.FS

var (
cmdPath string
mkfuncsSo string
cmdPath string
)

func TestE2e(t *testing.T) {
Expand All @@ -33,12 +31,6 @@ var _ = BeforeSuite(func(ctx context.Context) {

cmdPath, err = gexec.Build(root)
Expect(err).NotTo(HaveOccurred())

mkfuncsSo, err = gexec.Build(
filepath.Join(root, "pkg", "make", "mk_funcs"),
"-buildmode=c-shared",
)
Expect(err).NotTo(HaveOccurred())
})

var _ = AfterSuite(func() {
Expand Down
37 changes: 0 additions & 37 deletions test/e2e/mk_funcs_test.go

This file was deleted.