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

QUA-678: Update golang crypto dependency version #497

Merged
merged 3 commits into from
Aug 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ linux_image: &linux_image

macos_image: &macos_image
macos:
xcode: "11.4.0"
xcode: "11.7.0"

setup_macos_env: &setup_macos_env

Expand Down
15 changes: 8 additions & 7 deletions .circleci/xcode_install_go
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,16 @@ set -o errexit
set -o pipefail

PROJECT_RELATIVE_PATH=src/github.com/codeclimate/test-reporter

# Install go

# Install goSDK
mkdir ~/gosdk && cd "$_"
echo 'export PATH=$PATH:$HOME/gosdk/go/bin' >> "$BASH_ENV"
echo 'export GOROOT=$HOME/gosdk/go' >> "$BASH_ENV"
curl -O https://dl.google.com/go/go1.15.darwin-amd64.tar.gz
tar -xzf go1.15.darwin-amd64.tar.gz
echo 'export PATH=$PATH:$PWD/go/bin' >> "$BASH_ENV"

# Set go path
mkdir -p ~/gopath/${PROJECT_RELATIVE_PATH}
echo 'export GOPATH=$HOME/gopath' >> "$BASH_ENV"
# Set go path - workspace root
mkdir -p ~/projects/go/${PROJECT_RELATIVE_PATH} && cd "$_"
echo 'export GOPATH=$HOME/projects/go' >> "$BASH_ENV"
. "$BASH_ENV"
cd $GOPATH/${PROJECT_RELATIVE_PATH}
cp -r ~/project/ $GOPATH/${PROJECT_RELATIVE_PATH}
80 changes: 73 additions & 7 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/golang.org/x/crypto/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions vendor/golang.org/x/crypto/AUTHORS

This file was deleted.

15 changes: 5 additions & 10 deletions vendor/golang.org/x/crypto/CONTRIBUTING.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions vendor/golang.org/x/crypto/CONTRIBUTORS

This file was deleted.

3 changes: 0 additions & 3 deletions vendor/golang.org/x/crypto/README

This file was deleted.

23 changes: 23 additions & 0 deletions vendor/golang.org/x/crypto/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading