tests/thirdparty: update/add packages, fix modules (#186)

Update github.com/klauspost/compress version.

Add github.com/klauspost/reedsolomon and github.com/minio/md5-simd.

Add `-mod=mod` to commands due to golang/go#44129.
This commit is contained in:
Klaus Post
2021-04-19 21:38:24 +02:00
committed by GitHub
parent c32f24fb1e
commit f798093d69

View File

@@ -7,6 +7,7 @@
[ [
"go", "go",
"run", "run",
"-mod=mod",
".", ".",
"-avx", "-avx",
"-out", "-out",
@@ -29,6 +30,7 @@
[ [
"go", "go",
"run", "run",
"-mod=mod",
"_avo/asm.go", "_avo/asm.go",
"-out", "-out",
"sip13_amd64.s" "sip13_amd64.s"
@@ -42,6 +44,7 @@
[ [
"go", "go",
"run", "run",
"-mod=mod",
"avo/gen.go", "avo/gen.go",
"-out", "-out",
"blocks_amd64.s", "blocks_amd64.s",
@@ -70,6 +73,7 @@
[ [
"go", "go",
"run", "run",
"-mod=mod",
"asm.go", "asm.go",
"-out", "-out",
"marvin_amd64.s" "marvin_amd64.s"
@@ -125,6 +129,7 @@
[ [
"go", "go",
"run", "run",
"-mod=mod",
"asm/asm.go", "asm/asm.go",
"-out", "-out",
"primitivefuncs_amd64.s" "primitivefuncs_amd64.s"
@@ -133,21 +138,62 @@
}, },
{ {
"import_path": "github.com/klauspost/compress", "import_path": "github.com/klauspost/compress",
"version": "23a5980ed240fd76b89481403c834f48943b3788", "version": "2adf487b3e02f95ce7efd6e4953fda0ae7ecd080",
"dir": "s2", "dir": "s2/_generate",
"generate": [ "generate": [
[ [
"go", "go",
"run", "run",
"-mod=mod",
"gen.go", "gen.go",
"-out", "-out",
"encodeblock_amd64.s", "../encodeblock_amd64.s",
"-stubs", "-stubs",
"encodeblock_amd64.go" "../encodeblock_amd64.go",
"-pkg",
"s2"
] ]
], ],
"test": "./s2" "test": "./s2"
}, },
{
"import_path": "github.com/klauspost/reedsolomon",
"version": "922778284547557265cff0f903ab5f4c27e40ae9",
"dir": "_gen",
"generate": [
[
"go",
"run",
"-mod=mod",
"gen.go",
"-out",
"../galois_gen_amd64.s",
"-stubs",
"../galois_gen_amd64.go",
"-pkg",
"reedsolomon"
]
]
},
{
"import_path": "github.com/minio/md5-simd",
"version": "30ad8af83f6868c2a30c615f3edf1a9366bf3f89",
"dir": "_gen",
"generate": [
[
"go",
"run",
"-mod=mod",
"gen.go",
"-out",
"../md5block_amd64.s",
"-stubs",
"../md5block_amd64.go",
"-pkg",
"md5simd"
]
]
},
{ {
"import_path": "github.com/zeebo/blake3", "import_path": "github.com/zeebo/blake3",
"version": "25dba572f0e78ec108f0dd79c9c15288f542d7d9", "version": "25dba572f0e78ec108f0dd79c9c15288f542d7d9",
@@ -156,6 +202,7 @@
[ [
"go", "go",
"run", "run",
"-mod=mod",
"./avx2", "./avx2",
"-out", "-out",
"../avx2/impl.s" "../avx2/impl.s"