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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

8 changes: 8 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ on:
- main
pull_request:

# Prevent Go from auto-activating vendor mode when a stale vendor/ directory
# exists in the workspace. Actions/checkout does not always remove previously
# tracked files that were deleted in a later commit, so a checkout of a commit
# that removed vendor/ may still find the directory on disk, causing
# "inconsistent vendoring" build failures.
env:
GOFLAGS: "-mod=mod"

jobs:
gh-285:
strategy:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ All notable changes to this project will be documented in this file.
- Align default zerolog log level with logrus (info vs trace)
- Introduce slog handler wrapper around our Logger interface and use it with BinlogStreamer

### Removed

- Vendored packages are removed in favour of normal `go mod`

## [1.3.0 - 2026-04-08]

### Changed
Expand Down
7 changes: 5 additions & 2 deletions test/helpers/ghostferry_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,16 @@ def compile_binary
return if File.exist?(@compiled_binary_path)

@logger.debug("compiling test binary to #{@compiled_binary_path}")
rc = system(

# Use capture2e so that go build stderr is included in the raised error
# message rather than being swallowed by the test runner.
output, status = Open3.capture2e(
"go", "build",
"-o", @compiled_binary_path,
@main_path
)

raise "could not compile ghostferry" unless rc
raise "could not compile ghostferry:\n#{output}" unless status.success?
end

def start_server
Expand Down
27 changes: 0 additions & 27 deletions vendor/filippo.io/edwards25519/LICENSE

This file was deleted.

14 changes: 0 additions & 14 deletions vendor/filippo.io/edwards25519/README.md

This file was deleted.

20 changes: 0 additions & 20 deletions vendor/filippo.io/edwards25519/doc.go

This file was deleted.

Loading
Loading