From 9c815a0581550d13988a14b9c7fceb582f2f85c0 Mon Sep 17 00:00:00 2001 From: Michael McLoughlin Date: Wed, 27 Oct 2021 23:03:23 -0700 Subject: [PATCH] tests/thirdparty: fix phoreproject-bls (#204) This started failing under Go 1.17.2 due to a missing go mod tidy in the root of the respository. --- .github/workflows/packages.yml | 5 ++++- tests/thirdparty/packages.json | 7 +++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 1d89e82..b87ff6f 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -110,7 +110,10 @@ jobs: ref: a88a5ae26844d7293359422888d7c7f69f43c845 path: bls persist-credentials: false - - name: Setup + - name: Setup Root Module + working-directory: bls + run: go mod tidy + - name: Setup Generator Module working-directory: bls/asm run: | sed -i.bak '/+build ignore/d' asm.go diff --git a/tests/thirdparty/packages.json b/tests/thirdparty/packages.json index f71472a..f04a8e2 100644 --- a/tests/thirdparty/packages.json +++ b/tests/thirdparty/packages.json @@ -59,6 +59,13 @@ "module": "asm/go.mod", "setup": [ { + "name": "Setup Root Module", + "commands": [ + "go mod tidy" + ] + }, + { + "name": "Setup Generator Module", "dir": "asm", "commands": [ "sed -i.bak '/+build ignore/d' asm.go",