Skip to content

Commit

Permalink
Update canaries to 1.3.1 (#4039)
Browse files Browse the repository at this point in the history
  • Loading branch information
wdbaruni authored Jun 4, 2024
1 parent 067717d commit 03e0d03
Show file tree
Hide file tree
Showing 15 changed files with 98 additions and 112 deletions.
28 changes: 3 additions & 25 deletions go.work.sum

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions ops/aws/canary/lambda/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ TEST_BUILD_TAGS ?= unit,integration
update:
go get github.com/bacalhau-project/bacalhau@${TARGET_COMMIT} && go mod tidy


CMD_TARGETS := $(wildcard ./cmd/*)
BIN_TARGETS := $(patsubst ./cmd/%,./bin/%,${CMD_TARGETS})

Expand All @@ -21,17 +20,18 @@ build: ${BIN_TARGETS}
./bin:
mkdir $@


.PHONY: test
test: TEST_BUILD_TAGS=unit
test: tests.xml
test: run-tests

.PHONY: integration-test
integration-test: TEST_BUILD_TAGS=integration
integration-test: tests.xml
integration-test: run-tests

tests.xml: $(shell find ./pkg ./cmd -type f)
gotestsum --junitfile $@ -- -timeout 300s --tags=$(TEST_BUILD_TAGS) ./...
.PHONY: run-tests
run-tests:
rm -f tests.xml
gotestsum --format=standard-verbose --junitfile tests.xml -- -count=1 -timeout 300s --tags=$(TEST_BUILD_TAGS) ./...

.PHONY: clean
clean:
Expand Down
40 changes: 20 additions & 20 deletions ops/aws/canary/lambda/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ module github.com/bacalhau-project/bacalhau/ops/aws/canary
go 1.21

require (
github.com/aws/aws-lambda-go v1.34.1
github.com/aws/aws-sdk-go v1.44.96
github.com/bacalhau-project/bacalhau v1.2.2
github.com/aws/aws-lambda-go v1.47.0
github.com/aws/aws-sdk-go v1.53.10
github.com/bacalhau-project/bacalhau v1.3.1-rc1.0.20240526111249-66d4a8fb2752
github.com/rs/zerolog v1.31.0
github.com/slack-go/slack v0.11.3
github.com/spf13/pflag v1.0.5
Expand Down Expand Up @@ -102,16 +102,16 @@ require (
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/glog v1.1.2 // indirect
github.com/golang/glog v1.2.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/gopacket v1.1.19 // indirect
github.com/google/pprof v0.0.0-20240207164012-fb44976bdcd5 // indirect
github.com/google/uuid v1.5.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/mux v1.8.1 // indirect
github.com/gorilla/websocket v1.5.1 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-hclog v1.6.2 // indirect
Expand Down Expand Up @@ -286,7 +286,7 @@ require (
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/skeema/knownhosts v1.2.1 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/spf13/afero v1.9.5 // indirect
github.com/spf13/afero v1.10.0 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/spf13/cobra v1.8.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
Expand All @@ -312,21 +312,21 @@ require (
github.com/yashtewari/glob-intersection v0.2.0 // indirect
go.etcd.io/bbolt v1.3.8 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 // indirect
go.opentelemetry.io/otel v1.24.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
go.opentelemetry.io/otel v1.26.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.40.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.40.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.24.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.23.1 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.26.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.22.0 // indirect
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.21.0 // indirect
go.opentelemetry.io/otel/exporters/zipkin v1.21.0 // indirect
go.opentelemetry.io/otel/metric v1.24.0 // indirect
go.opentelemetry.io/otel/sdk v1.24.0 // indirect
go.opentelemetry.io/otel/metric v1.26.0 // indirect
go.opentelemetry.io/otel/sdk v1.26.0 // indirect
go.opentelemetry.io/otel/sdk/metric v1.24.0 // indirect
go.opentelemetry.io/otel/trace v1.24.0 // indirect
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
go.opentelemetry.io/otel/trace v1.26.0 // indirect
go.opentelemetry.io/proto/otlp v1.2.0 // indirect
go.ptx.dk/multierrgroup v0.0.3 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/dig v1.17.1 // indirect
Expand All @@ -339,18 +339,18 @@ require (
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
golang.org/x/mod v0.15.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/oauth2 v0.16.0 // indirect
golang.org/x/oauth2 v0.17.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.18.0 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
gonum.org/v1/gonum v0.14.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240108191215-35c7eff3a6b1 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240108191215-35c7eff3a6b1 // indirect
google.golang.org/grpc v1.61.1 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/grpc v1.63.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
Expand Down
Loading

0 comments on commit 03e0d03

Please sign in to comment.