mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-30 13:44:36 -04:00
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:
parent
190b5a3859
commit
72408c7d68
2 changed files with 46 additions and 10 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue