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

Remote reporting of package build times and success #156

Draft
wants to merge 13 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Initial commit of the remote tracker
  • Loading branch information
csweichel committed Jul 1, 2023
commit 95e73b3622cf7ba07debd0b856d04bc399ebb98c
13 changes: 13 additions & 0 deletions tracker/backend/ingestor/BUILD.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
packages:
- name: app
type: go
srcs:
- go.mod
- go.sum
- "**/*.go"
env:
- CGO_ENABLED=0
deps:
- //:app
config:
packaging: app
31 changes: 31 additions & 0 deletions tracker/backend/ingestor/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
module github.com/gitpod-io/leeway/tracker/backend/ingestor

go 1.19

require (
github.com/aws/aws-lambda-go v1.41.0
github.com/aws/aws-sdk-go-v2 v1.18.1
github.com/aws/aws-sdk-go-v2/config v1.18.27
github.com/awslabs/aws-lambda-go-api-proxy v0.14.0
github.com/bufbuild/connect-grpcreflect-go v1.1.0
github.com/gitpod-io/leeway v0.0.0-00010101000000-000000000000
github.com/sirupsen/logrus v1.9.3
)

require (
github.com/aws/aws-sdk-go-v2/credentials v1.13.26 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.4 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.34 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.28 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.35 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.28 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.12.12 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.12 // indirect
github.com/aws/aws-sdk-go-v2/service/sts v1.19.2 // indirect
github.com/aws/smithy-go v1.13.5 // indirect
github.com/bufbuild/connect-go v1.9.0 // indirect
golang.org/x/sys v0.1.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)

replace github.com/gitpod-io/leeway => ../../.. // leeway
Loading
Oops, something went wrong.