Cache generated binary across jobs

- retrieved by the commit hash
- removes bindata tags from integration tests, because it does not seem
  to be required
- due to the missing automatically generated data, the zstd tests fail
  (they use repo data including node_modules (!) as input to the test,
  there is no apparent reason for the size constants)
This commit is contained in:
Otto Richter 2024-08-26 21:51:41 +02:00
parent 190b5a3859
commit 72408c7d68
2 changed files with 46 additions and 10 deletions

View file

@ -16,7 +16,7 @@ import (
)
func TestWriterReader(t *testing.T) {
testData := prepareTestData(t, 20_000_000)
testData := prepareTestData(t, 15_000_000)
result := bytes.NewBuffer(nil)
@ -64,7 +64,7 @@ func TestWriterReader(t *testing.T) {
}
func TestSeekableWriterReader(t *testing.T) {
testData := prepareTestData(t, 20_000_000)
testData := prepareTestData(t, 15_000_000)
result := bytes.NewBuffer(nil)