Skip to content
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,8 @@ for:
# setup go
- rmdir c:\go /s /q
- "choco install golang --version 1.15.7"
- "choco install dep"
- setx PATH "C:\go\bin;C:\gopath\bin;C:\Program Files (x86)\Bazaar\;C:\Program Files\Mercurial;%PATH%;"
- "go version"
# set set GO111MODULE to auto to enable module-aware mode only when a go.mod file is present in the current directory or any parent directory
# https://blog.golang.org/go116-module-changes#TOC_2.
# This is required for the go dep integration tests
- "go env -w GO111MODULE=auto"
- "go env"

# setup Gradle
Expand Down Expand Up @@ -100,14 +95,9 @@ for:

# Install latest gradle
- sh: "sudo apt-get -y remove gradle"
- sh: "sudo apt-get install go-dep"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With the version bump in SAM CLI, we might need to clean these as well in case we have some integration tests there.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SAM CLI does not have Go Dep support, so there is no updates on SAM CLI at all.

- sh: "wget https://services.gradle.org/distributions/gradle-5.5-bin.zip -P /tmp"
- sh: "sudo unzip -d /opt/gradle /tmp/gradle-*.zip"
- sh: "PATH=/opt/gradle/gradle-5.5/bin:$PATH"
# set set GO111MODULE to auto to enable module-aware mode only when a go.mod file is present in the current directory or any parent directory
# https://blog.golang.org/go116-module-changes#TOC_2.
# This is required for the go dep integration tests
- sh: "go env -w GO111MODULE=auto"

build_script:
- 'python -c "import sys; print(sys.executable)"'
Expand Down
1 change: 0 additions & 1 deletion aws_lambda_builders/workflows/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import aws_lambda_builders.workflows.python_pip
import aws_lambda_builders.workflows.nodejs_npm
import aws_lambda_builders.workflows.ruby_bundler
import aws_lambda_builders.workflows.go_dep
import aws_lambda_builders.workflows.go_modules
import aws_lambda_builders.workflows.java_gradle
import aws_lambda_builders.workflows.java_maven
Expand Down
48 changes: 0 additions & 48 deletions aws_lambda_builders/workflows/go_dep/DESIGN.md

This file was deleted.

5 changes: 0 additions & 5 deletions aws_lambda_builders/workflows/go_dep/__init__.py

This file was deleted.

70 changes: 0 additions & 70 deletions aws_lambda_builders/workflows/go_dep/actions.py

This file was deleted.

89 changes: 0 additions & 89 deletions aws_lambda_builders/workflows/go_dep/subproc_exec.py

This file was deleted.

42 changes: 0 additions & 42 deletions aws_lambda_builders/workflows/go_dep/utils.py

This file was deleted.

58 changes: 0 additions & 58 deletions aws_lambda_builders/workflows/go_dep/workflow.py

This file was deleted.

Loading