Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include bogo go.sum #824

Merged
merged 2 commits into from Sep 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 2 additions & 4 deletions bogo/fetch-and-build
Expand Up @@ -9,6 +9,7 @@ git init
git config core.sparsecheckout 1
cat << EOF > .git/info/sparse-checkout
go.mod
go.sum
ssl/test/runner
util/testresult
EOF
Expand All @@ -17,9 +18,6 @@ EOF
COMMIT=3fea50a7cb55bb72e4a69d34015f1a6971e7934c
git fetch --depth=1 https://github.com/rustls/boringssl.git $COMMIT
git checkout $COMMIT
(cd ssl/test/runner &&
go mod download golang.org/x/crypto &&
go get golang.org/x/crypto/chacha20poly1305@v0.0.0-20200622213623-75b288015ac9 &&
go test -c)
(cd ssl/test/runner && go test -c)

popd